#Question 1

# Importing the data
library(readr)
d=read_csv("https://bit.ly/2SKjUn2")
Rows: 16 Columns: 5── Column specification ─────────────────────────────────────────────────────────────────────────────────────
Delimiter: ","
chr (1): treat
dbl (4): id, block, reg_voters, vote_pop
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
#Get treatment vector as a dummy
treatment=numeric(length(d$treat))
treatment[d$treat=="pub.pol"]=1


mean(d$vote_pop[treatment == 1]) - mean(d$vote_pop[treatment == 0])
[1] -0.1575
View(d)

#Create 12870 permutations of assignment
vec <- c(rep(0,8),rep(1,8))
tbl_v <- table(vec)
library(RcppAlgos)
Warning: package ‘RcppAlgos’ was built under R version 4.3.2
treat_permutations <- permuteGeneral(names(tbl_v), 16, freqs = tbl_v)
as.numeric(treat_permutations[1,])
 [1] 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1
dim(treat_permutations)
[1] 12870    16
# Fisher Exact Test (a)

library(progress)
Warning: package ‘progress’ was built under R version 4.3.2
# Function to calculate treatment effect
calculate_treatment_effect <- function(df) {
  mean(df$vote_pop[df$treat == 1]) - mean(df$vote_pop[df$treat == 0])
}

# Initialize a dataframe
results_df <- data.frame(permutation = integer(12870), treatment_effect = numeric(12870))

pb <- progress_bar$new(total = dim(treat_permutations)[1], clear = FALSE, format = "  :current/:total [:bar] :percent")

# Iterate over each permutation and calculate treatment effect
for (i in 1:nrow(treat_permutations)) {
  
  pb$tick()
  
  d$treat <- as.numeric(treat_permutations[i,])
  treatment_effect <- calculate_treatment_effect(d)

  # Store permutation and corresponding treatment effect
  results_df[i, ] <- list(permutation = paste(as.numeric(treat_permutations[i, ]), collapse = ""), treatment_effect = treatment_effect)
}

  44/12870 [-----------------------------------------------------------------------------------------]   0%
  45/12870 [-----------------------------------------------------------------------------------------]   0%
  46/12870 [-----------------------------------------------------------------------------------------]   0%
  47/12870 [-----------------------------------------------------------------------------------------]   0%
  48/12870 [-----------------------------------------------------------------------------------------]   0%
  49/12870 [-----------------------------------------------------------------------------------------]   0%
  50/12870 [-----------------------------------------------------------------------------------------]   0%
  51/12870 [-----------------------------------------------------------------------------------------]   0%
  52/12870 [-----------------------------------------------------------------------------------------]   0%
  53/12870 [-----------------------------------------------------------------------------------------]   0%
  54/12870 [-----------------------------------------------------------------------------------------]   0%
  55/12870 [-----------------------------------------------------------------------------------------]   0%
  56/12870 [-----------------------------------------------------------------------------------------]   0%
  57/12870 [-----------------------------------------------------------------------------------------]   0%
  58/12870 [-----------------------------------------------------------------------------------------]   0%
  59/12870 [-----------------------------------------------------------------------------------------]   0%
  60/12870 [-----------------------------------------------------------------------------------------]   0%
  61/12870 [-----------------------------------------------------------------------------------------]   0%
  62/12870 [-----------------------------------------------------------------------------------------]   0%
  63/12870 [-----------------------------------------------------------------------------------------]   0%
  64/12870 [-----------------------------------------------------------------------------------------]   0%
  65/12870 [-----------------------------------------------------------------------------------------]   1%
  66/12870 [-----------------------------------------------------------------------------------------]   1%
  67/12870 [-----------------------------------------------------------------------------------------]   1%
  68/12870 [-----------------------------------------------------------------------------------------]   1%
  69/12870 [-----------------------------------------------------------------------------------------]   1%
  70/12870 [-----------------------------------------------------------------------------------------]   1%
  71/12870 [-----------------------------------------------------------------------------------------]   1%
  72/12870 [-----------------------------------------------------------------------------------------]   1%
  73/12870 [>----------------------------------------------------------------------------------------]   1%
  74/12870 [>----------------------------------------------------------------------------------------]   1%
  75/12870 [>----------------------------------------------------------------------------------------]   1%
  76/12870 [>----------------------------------------------------------------------------------------]   1%
  77/12870 [>----------------------------------------------------------------------------------------]   1%
  78/12870 [>----------------------------------------------------------------------------------------]   1%
  79/12870 [>----------------------------------------------------------------------------------------]   1%
  80/12870 [>----------------------------------------------------------------------------------------]   1%
  81/12870 [>----------------------------------------------------------------------------------------]   1%
  82/12870 [>----------------------------------------------------------------------------------------]   1%
  83/12870 [>----------------------------------------------------------------------------------------]   1%
  84/12870 [>----------------------------------------------------------------------------------------]   1%
  85/12870 [>----------------------------------------------------------------------------------------]   1%
  86/12870 [>----------------------------------------------------------------------------------------]   1%
  87/12870 [>----------------------------------------------------------------------------------------]   1%
  88/12870 [>----------------------------------------------------------------------------------------]   1%
  89/12870 [>----------------------------------------------------------------------------------------]   1%
  90/12870 [>----------------------------------------------------------------------------------------]   1%
  91/12870 [>----------------------------------------------------------------------------------------]   1%
  92/12870 [>----------------------------------------------------------------------------------------]   1%
  93/12870 [>----------------------------------------------------------------------------------------]   1%
  94/12870 [>----------------------------------------------------------------------------------------]   1%
  95/12870 [>----------------------------------------------------------------------------------------]   1%
  96/12870 [>----------------------------------------------------------------------------------------]   1%
  97/12870 [>----------------------------------------------------------------------------------------]   1%
  98/12870 [>----------------------------------------------------------------------------------------]   1%
  99/12870 [>----------------------------------------------------------------------------------------]   1%
  100/12870 [>---------------------------------------------------------------------------------------]   1%
  101/12870 [>---------------------------------------------------------------------------------------]   1%
  102/12870 [>---------------------------------------------------------------------------------------]   1%
  103/12870 [>---------------------------------------------------------------------------------------]   1%
  104/12870 [>---------------------------------------------------------------------------------------]   1%
  105/12870 [>---------------------------------------------------------------------------------------]   1%
  106/12870 [>---------------------------------------------------------------------------------------]   1%
  107/12870 [>---------------------------------------------------------------------------------------]   1%
  108/12870 [>---------------------------------------------------------------------------------------]   1%
  109/12870 [>---------------------------------------------------------------------------------------]   1%
  110/12870 [>---------------------------------------------------------------------------------------]   1%
  111/12870 [>---------------------------------------------------------------------------------------]   1%
  112/12870 [>---------------------------------------------------------------------------------------]   1%
  113/12870 [>---------------------------------------------------------------------------------------]   1%
  114/12870 [>---------------------------------------------------------------------------------------]   1%
  115/12870 [>---------------------------------------------------------------------------------------]   1%
  116/12870 [>---------------------------------------------------------------------------------------]   1%
  117/12870 [>---------------------------------------------------------------------------------------]   1%
  118/12870 [>---------------------------------------------------------------------------------------]   1%
  119/12870 [>---------------------------------------------------------------------------------------]   1%
  120/12870 [>---------------------------------------------------------------------------------------]   1%
  121/12870 [>---------------------------------------------------------------------------------------]   1%
  122/12870 [>---------------------------------------------------------------------------------------]   1%
  123/12870 [>---------------------------------------------------------------------------------------]   1%
  124/12870 [>---------------------------------------------------------------------------------------]   1%
  125/12870 [>---------------------------------------------------------------------------------------]   1%
  126/12870 [>---------------------------------------------------------------------------------------]   1%
  127/12870 [>---------------------------------------------------------------------------------------]   1%
  128/12870 [>---------------------------------------------------------------------------------------]   1%
  129/12870 [>---------------------------------------------------------------------------------------]   1%
  130/12870 [>---------------------------------------------------------------------------------------]   1%
  131/12870 [>---------------------------------------------------------------------------------------]   1%
  132/12870 [>---------------------------------------------------------------------------------------]   1%
  133/12870 [>---------------------------------------------------------------------------------------]   1%
  134/12870 [>---------------------------------------------------------------------------------------]   1%
  135/12870 [>---------------------------------------------------------------------------------------]   1%
  136/12870 [>---------------------------------------------------------------------------------------]   1%
  137/12870 [>---------------------------------------------------------------------------------------]   1%
  138/12870 [>---------------------------------------------------------------------------------------]   1%
  139/12870 [>---------------------------------------------------------------------------------------]   1%
  140/12870 [>---------------------------------------------------------------------------------------]   1%
  141/12870 [>---------------------------------------------------------------------------------------]   1%
  142/12870 [>---------------------------------------------------------------------------------------]   1%
  143/12870 [>---------------------------------------------------------------------------------------]   1%
  144/12870 [>---------------------------------------------------------------------------------------]   1%
  145/12870 [>---------------------------------------------------------------------------------------]   1%
  146/12870 [>---------------------------------------------------------------------------------------]   1%
  147/12870 [>---------------------------------------------------------------------------------------]   1%
  148/12870 [>---------------------------------------------------------------------------------------]   1%
  149/12870 [>---------------------------------------------------------------------------------------]   1%
  150/12870 [>---------------------------------------------------------------------------------------]   1%
  151/12870 [>---------------------------------------------------------------------------------------]   1%
  152/12870 [>---------------------------------------------------------------------------------------]   1%
  153/12870 [>---------------------------------------------------------------------------------------]   1%
  154/12870 [>---------------------------------------------------------------------------------------]   1%
  155/12870 [>---------------------------------------------------------------------------------------]   1%
  156/12870 [>---------------------------------------------------------------------------------------]   1%
  157/12870 [>---------------------------------------------------------------------------------------]   1%
  158/12870 [>---------------------------------------------------------------------------------------]   1%
  159/12870 [>---------------------------------------------------------------------------------------]   1%
  160/12870 [>---------------------------------------------------------------------------------------]   1%
  161/12870 [>---------------------------------------------------------------------------------------]   1%
  162/12870 [>---------------------------------------------------------------------------------------]   1%
  163/12870 [>---------------------------------------------------------------------------------------]   1%
  164/12870 [>---------------------------------------------------------------------------------------]   1%
  165/12870 [>---------------------------------------------------------------------------------------]   1%
  166/12870 [>---------------------------------------------------------------------------------------]   1%
  167/12870 [>---------------------------------------------------------------------------------------]   1%
  168/12870 [>---------------------------------------------------------------------------------------]   1%
  169/12870 [>---------------------------------------------------------------------------------------]   1%
  170/12870 [>---------------------------------------------------------------------------------------]   1%
  171/12870 [>---------------------------------------------------------------------------------------]   1%
  172/12870 [>---------------------------------------------------------------------------------------]   1%
  173/12870 [>---------------------------------------------------------------------------------------]   1%
  174/12870 [>---------------------------------------------------------------------------------------]   1%
  175/12870 [>---------------------------------------------------------------------------------------]   1%
  176/12870 [>---------------------------------------------------------------------------------------]   1%
  177/12870 [>---------------------------------------------------------------------------------------]   1%
  178/12870 [>---------------------------------------------------------------------------------------]   1%
  179/12870 [>---------------------------------------------------------------------------------------]   1%
  180/12870 [>---------------------------------------------------------------------------------------]   1%
  181/12870 [>---------------------------------------------------------------------------------------]   1%
  182/12870 [>---------------------------------------------------------------------------------------]   1%
  183/12870 [>---------------------------------------------------------------------------------------]   1%
  184/12870 [>---------------------------------------------------------------------------------------]   1%
  185/12870 [>---------------------------------------------------------------------------------------]   1%
  186/12870 [>---------------------------------------------------------------------------------------]   1%
  187/12870 [>---------------------------------------------------------------------------------------]   1%
  188/12870 [>---------------------------------------------------------------------------------------]   1%
  189/12870 [>---------------------------------------------------------------------------------------]   1%
  190/12870 [>---------------------------------------------------------------------------------------]   1%
  191/12870 [>---------------------------------------------------------------------------------------]   1%
  192/12870 [>---------------------------------------------------------------------------------------]   1%
  193/12870 [>---------------------------------------------------------------------------------------]   1%
  194/12870 [>---------------------------------------------------------------------------------------]   2%
  195/12870 [>---------------------------------------------------------------------------------------]   2%
  196/12870 [>---------------------------------------------------------------------------------------]   2%
  197/12870 [>---------------------------------------------------------------------------------------]   2%
  198/12870 [>---------------------------------------------------------------------------------------]   2%
  199/12870 [>---------------------------------------------------------------------------------------]   2%
  200/12870 [>---------------------------------------------------------------------------------------]   2%
  201/12870 [>---------------------------------------------------------------------------------------]   2%
  202/12870 [>---------------------------------------------------------------------------------------]   2%
  203/12870 [>---------------------------------------------------------------------------------------]   2%
  204/12870 [>---------------------------------------------------------------------------------------]   2%
  205/12870 [>---------------------------------------------------------------------------------------]   2%
  206/12870 [>---------------------------------------------------------------------------------------]   2%
  207/12870 [>---------------------------------------------------------------------------------------]   2%
  208/12870 [>---------------------------------------------------------------------------------------]   2%
  209/12870 [>---------------------------------------------------------------------------------------]   2%
  210/12870 [>---------------------------------------------------------------------------------------]   2%
  211/12870 [>---------------------------------------------------------------------------------------]   2%
  212/12870 [>---------------------------------------------------------------------------------------]   2%
  213/12870 [>---------------------------------------------------------------------------------------]   2%
  214/12870 [>---------------------------------------------------------------------------------------]   2%
  215/12870 [>---------------------------------------------------------------------------------------]   2%
  216/12870 [>---------------------------------------------------------------------------------------]   2%
  217/12870 [>---------------------------------------------------------------------------------------]   2%
  218/12870 [>---------------------------------------------------------------------------------------]   2%
  219/12870 [>---------------------------------------------------------------------------------------]   2%
  220/12870 [=>--------------------------------------------------------------------------------------]   2%
  221/12870 [=>--------------------------------------------------------------------------------------]   2%
  222/12870 [=>--------------------------------------------------------------------------------------]   2%
  223/12870 [=>--------------------------------------------------------------------------------------]   2%
  224/12870 [=>--------------------------------------------------------------------------------------]   2%
  225/12870 [=>--------------------------------------------------------------------------------------]   2%
  226/12870 [=>--------------------------------------------------------------------------------------]   2%
  227/12870 [=>--------------------------------------------------------------------------------------]   2%
  228/12870 [=>--------------------------------------------------------------------------------------]   2%
  229/12870 [=>--------------------------------------------------------------------------------------]   2%
  230/12870 [=>--------------------------------------------------------------------------------------]   2%
  231/12870 [=>--------------------------------------------------------------------------------------]   2%
  232/12870 [=>--------------------------------------------------------------------------------------]   2%
  233/12870 [=>--------------------------------------------------------------------------------------]   2%
  234/12870 [=>--------------------------------------------------------------------------------------]   2%
  235/12870 [=>--------------------------------------------------------------------------------------]   2%
  236/12870 [=>--------------------------------------------------------------------------------------]   2%
  237/12870 [=>--------------------------------------------------------------------------------------]   2%
  238/12870 [=>--------------------------------------------------------------------------------------]   2%
  239/12870 [=>--------------------------------------------------------------------------------------]   2%
  240/12870 [=>--------------------------------------------------------------------------------------]   2%
  241/12870 [=>--------------------------------------------------------------------------------------]   2%
  242/12870 [=>--------------------------------------------------------------------------------------]   2%
  243/12870 [=>--------------------------------------------------------------------------------------]   2%
  244/12870 [=>--------------------------------------------------------------------------------------]   2%
  245/12870 [=>--------------------------------------------------------------------------------------]   2%
  246/12870 [=>--------------------------------------------------------------------------------------]   2%
  247/12870 [=>--------------------------------------------------------------------------------------]   2%
  248/12870 [=>--------------------------------------------------------------------------------------]   2%
  249/12870 [=>--------------------------------------------------------------------------------------]   2%
  250/12870 [=>--------------------------------------------------------------------------------------]   2%
  251/12870 [=>--------------------------------------------------------------------------------------]   2%
  252/12870 [=>--------------------------------------------------------------------------------------]   2%
  253/12870 [=>--------------------------------------------------------------------------------------]   2%
  254/12870 [=>--------------------------------------------------------------------------------------]   2%
  255/12870 [=>--------------------------------------------------------------------------------------]   2%
  256/12870 [=>--------------------------------------------------------------------------------------]   2%
  257/12870 [=>--------------------------------------------------------------------------------------]   2%
  258/12870 [=>--------------------------------------------------------------------------------------]   2%
  259/12870 [=>--------------------------------------------------------------------------------------]   2%
  260/12870 [=>--------------------------------------------------------------------------------------]   2%
  261/12870 [=>--------------------------------------------------------------------------------------]   2%
  262/12870 [=>--------------------------------------------------------------------------------------]   2%
  263/12870 [=>--------------------------------------------------------------------------------------]   2%
  264/12870 [=>--------------------------------------------------------------------------------------]   2%
  265/12870 [=>--------------------------------------------------------------------------------------]   2%
  266/12870 [=>--------------------------------------------------------------------------------------]   2%
  267/12870 [=>--------------------------------------------------------------------------------------]   2%
  268/12870 [=>--------------------------------------------------------------------------------------]   2%
  269/12870 [=>--------------------------------------------------------------------------------------]   2%
  270/12870 [=>--------------------------------------------------------------------------------------]   2%
  271/12870 [=>--------------------------------------------------------------------------------------]   2%
  272/12870 [=>--------------------------------------------------------------------------------------]   2%
  273/12870 [=>--------------------------------------------------------------------------------------]   2%
  274/12870 [=>--------------------------------------------------------------------------------------]   2%
  275/12870 [=>--------------------------------------------------------------------------------------]   2%
  276/12870 [=>--------------------------------------------------------------------------------------]   2%
  277/12870 [=>--------------------------------------------------------------------------------------]   2%
  278/12870 [=>--------------------------------------------------------------------------------------]   2%
  279/12870 [=>--------------------------------------------------------------------------------------]   2%
  280/12870 [=>--------------------------------------------------------------------------------------]   2%
  281/12870 [=>--------------------------------------------------------------------------------------]   2%
  282/12870 [=>--------------------------------------------------------------------------------------]   2%
  283/12870 [=>--------------------------------------------------------------------------------------]   2%
  284/12870 [=>--------------------------------------------------------------------------------------]   2%
  285/12870 [=>--------------------------------------------------------------------------------------]   2%
  286/12870 [=>--------------------------------------------------------------------------------------]   2%
  287/12870 [=>--------------------------------------------------------------------------------------]   2%
  288/12870 [=>--------------------------------------------------------------------------------------]   2%
  289/12870 [=>--------------------------------------------------------------------------------------]   2%
  290/12870 [=>--------------------------------------------------------------------------------------]   2%
  291/12870 [=>--------------------------------------------------------------------------------------]   2%
  292/12870 [=>--------------------------------------------------------------------------------------]   2%
  293/12870 [=>--------------------------------------------------------------------------------------]   2%
  294/12870 [=>--------------------------------------------------------------------------------------]   2%
  295/12870 [=>--------------------------------------------------------------------------------------]   2%
  296/12870 [=>--------------------------------------------------------------------------------------]   2%
  297/12870 [=>--------------------------------------------------------------------------------------]   2%
  298/12870 [=>--------------------------------------------------------------------------------------]   2%
  299/12870 [=>--------------------------------------------------------------------------------------]   2%
  300/12870 [=>--------------------------------------------------------------------------------------]   2%
  301/12870 [=>--------------------------------------------------------------------------------------]   2%
  302/12870 [=>--------------------------------------------------------------------------------------]   2%
  303/12870 [=>--------------------------------------------------------------------------------------]   2%
  304/12870 [=>--------------------------------------------------------------------------------------]   2%
  305/12870 [=>--------------------------------------------------------------------------------------]   2%
  306/12870 [=>--------------------------------------------------------------------------------------]   2%
  307/12870 [=>--------------------------------------------------------------------------------------]   2%
  308/12870 [=>--------------------------------------------------------------------------------------]   2%
  309/12870 [=>--------------------------------------------------------------------------------------]   2%
  310/12870 [=>--------------------------------------------------------------------------------------]   2%
  311/12870 [=>--------------------------------------------------------------------------------------]   2%
  312/12870 [=>--------------------------------------------------------------------------------------]   2%
  313/12870 [=>--------------------------------------------------------------------------------------]   2%
  314/12870 [=>--------------------------------------------------------------------------------------]   2%
  315/12870 [=>--------------------------------------------------------------------------------------]   2%
  316/12870 [=>--------------------------------------------------------------------------------------]   2%
  317/12870 [=>--------------------------------------------------------------------------------------]   2%
  318/12870 [=>--------------------------------------------------------------------------------------]   2%
  319/12870 [=>--------------------------------------------------------------------------------------]   2%
  320/12870 [=>--------------------------------------------------------------------------------------]   2%
  321/12870 [=>--------------------------------------------------------------------------------------]   2%
  322/12870 [=>--------------------------------------------------------------------------------------]   3%
  323/12870 [=>--------------------------------------------------------------------------------------]   3%
  324/12870 [=>--------------------------------------------------------------------------------------]   3%
  325/12870 [=>--------------------------------------------------------------------------------------]   3%
  326/12870 [=>--------------------------------------------------------------------------------------]   3%
  327/12870 [=>--------------------------------------------------------------------------------------]   3%
  328/12870 [=>--------------------------------------------------------------------------------------]   3%
  329/12870 [=>--------------------------------------------------------------------------------------]   3%
  330/12870 [=>--------------------------------------------------------------------------------------]   3%
  331/12870 [=>--------------------------------------------------------------------------------------]   3%
  332/12870 [=>--------------------------------------------------------------------------------------]   3%
  333/12870 [=>--------------------------------------------------------------------------------------]   3%
  334/12870 [=>--------------------------------------------------------------------------------------]   3%
  335/12870 [=>--------------------------------------------------------------------------------------]   3%
  336/12870 [=>--------------------------------------------------------------------------------------]   3%
  337/12870 [=>--------------------------------------------------------------------------------------]   3%
  338/12870 [=>--------------------------------------------------------------------------------------]   3%
  339/12870 [=>--------------------------------------------------------------------------------------]   3%
  340/12870 [=>--------------------------------------------------------------------------------------]   3%
  341/12870 [=>--------------------------------------------------------------------------------------]   3%
  342/12870 [=>--------------------------------------------------------------------------------------]   3%
  343/12870 [=>--------------------------------------------------------------------------------------]   3%
  344/12870 [=>--------------------------------------------------------------------------------------]   3%
  345/12870 [=>--------------------------------------------------------------------------------------]   3%
  346/12870 [=>--------------------------------------------------------------------------------------]   3%
  347/12870 [=>--------------------------------------------------------------------------------------]   3%
  348/12870 [=>--------------------------------------------------------------------------------------]   3%
  349/12870 [=>--------------------------------------------------------------------------------------]   3%
  350/12870 [=>--------------------------------------------------------------------------------------]   3%
  351/12870 [=>--------------------------------------------------------------------------------------]   3%
  352/12870 [=>--------------------------------------------------------------------------------------]   3%
  353/12870 [=>--------------------------------------------------------------------------------------]   3%
  354/12870 [=>--------------------------------------------------------------------------------------]   3%
  355/12870 [=>--------------------------------------------------------------------------------------]   3%
  356/12870 [=>--------------------------------------------------------------------------------------]   3%
  357/12870 [=>--------------------------------------------------------------------------------------]   3%
  358/12870 [=>--------------------------------------------------------------------------------------]   3%
  359/12870 [=>--------------------------------------------------------------------------------------]   3%
  360/12870 [=>--------------------------------------------------------------------------------------]   3%
  361/12870 [=>--------------------------------------------------------------------------------------]   3%
  362/12870 [=>--------------------------------------------------------------------------------------]   3%
  363/12870 [=>--------------------------------------------------------------------------------------]   3%
  364/12870 [=>--------------------------------------------------------------------------------------]   3%
  365/12870 [=>--------------------------------------------------------------------------------------]   3%
  366/12870 [==>-------------------------------------------------------------------------------------]   3%
  367/12870 [==>-------------------------------------------------------------------------------------]   3%
  368/12870 [==>-------------------------------------------------------------------------------------]   3%
  369/12870 [==>-------------------------------------------------------------------------------------]   3%
  370/12870 [==>-------------------------------------------------------------------------------------]   3%
  371/12870 [==>-------------------------------------------------------------------------------------]   3%
  372/12870 [==>-------------------------------------------------------------------------------------]   3%
  373/12870 [==>-------------------------------------------------------------------------------------]   3%
  374/12870 [==>-------------------------------------------------------------------------------------]   3%
  375/12870 [==>-------------------------------------------------------------------------------------]   3%
  376/12870 [==>-------------------------------------------------------------------------------------]   3%
  377/12870 [==>-------------------------------------------------------------------------------------]   3%
  378/12870 [==>-------------------------------------------------------------------------------------]   3%
  379/12870 [==>-------------------------------------------------------------------------------------]   3%
  380/12870 [==>-------------------------------------------------------------------------------------]   3%
  381/12870 [==>-------------------------------------------------------------------------------------]   3%
  382/12870 [==>-------------------------------------------------------------------------------------]   3%
  383/12870 [==>-------------------------------------------------------------------------------------]   3%
  384/12870 [==>-------------------------------------------------------------------------------------]   3%
  385/12870 [==>-------------------------------------------------------------------------------------]   3%
  386/12870 [==>-------------------------------------------------------------------------------------]   3%
  387/12870 [==>-------------------------------------------------------------------------------------]   3%
  388/12870 [==>-------------------------------------------------------------------------------------]   3%
  389/12870 [==>-------------------------------------------------------------------------------------]   3%
  390/12870 [==>-------------------------------------------------------------------------------------]   3%
  391/12870 [==>-------------------------------------------------------------------------------------]   3%
  392/12870 [==>-------------------------------------------------------------------------------------]   3%
  393/12870 [==>-------------------------------------------------------------------------------------]   3%
  394/12870 [==>-------------------------------------------------------------------------------------]   3%
  395/12870 [==>-------------------------------------------------------------------------------------]   3%
  396/12870 [==>-------------------------------------------------------------------------------------]   3%
  397/12870 [==>-------------------------------------------------------------------------------------]   3%
  398/12870 [==>-------------------------------------------------------------------------------------]   3%
  399/12870 [==>-------------------------------------------------------------------------------------]   3%
  400/12870 [==>-------------------------------------------------------------------------------------]   3%
  401/12870 [==>-------------------------------------------------------------------------------------]   3%
  402/12870 [==>-------------------------------------------------------------------------------------]   3%
  403/12870 [==>-------------------------------------------------------------------------------------]   3%
  404/12870 [==>-------------------------------------------------------------------------------------]   3%
  405/12870 [==>-------------------------------------------------------------------------------------]   3%
  406/12870 [==>-------------------------------------------------------------------------------------]   3%
  407/12870 [==>-------------------------------------------------------------------------------------]   3%
  408/12870 [==>-------------------------------------------------------------------------------------]   3%
  409/12870 [==>-------------------------------------------------------------------------------------]   3%
  410/12870 [==>-------------------------------------------------------------------------------------]   3%
  411/12870 [==>-------------------------------------------------------------------------------------]   3%
  412/12870 [==>-------------------------------------------------------------------------------------]   3%
  413/12870 [==>-------------------------------------------------------------------------------------]   3%
  414/12870 [==>-------------------------------------------------------------------------------------]   3%
  415/12870 [==>-------------------------------------------------------------------------------------]   3%
  416/12870 [==>-------------------------------------------------------------------------------------]   3%
  417/12870 [==>-------------------------------------------------------------------------------------]   3%
  418/12870 [==>-------------------------------------------------------------------------------------]   3%
  419/12870 [==>-------------------------------------------------------------------------------------]   3%
  420/12870 [==>-------------------------------------------------------------------------------------]   3%
  421/12870 [==>-------------------------------------------------------------------------------------]   3%
  422/12870 [==>-------------------------------------------------------------------------------------]   3%
  423/12870 [==>-------------------------------------------------------------------------------------]   3%
  424/12870 [==>-------------------------------------------------------------------------------------]   3%
  425/12870 [==>-------------------------------------------------------------------------------------]   3%
  426/12870 [==>-------------------------------------------------------------------------------------]   3%
  427/12870 [==>-------------------------------------------------------------------------------------]   3%
  428/12870 [==>-------------------------------------------------------------------------------------]   3%
  429/12870 [==>-------------------------------------------------------------------------------------]   3%
  430/12870 [==>-------------------------------------------------------------------------------------]   3%
  431/12870 [==>-------------------------------------------------------------------------------------]   3%
  432/12870 [==>-------------------------------------------------------------------------------------]   3%
  433/12870 [==>-------------------------------------------------------------------------------------]   3%
  434/12870 [==>-------------------------------------------------------------------------------------]   3%
  435/12870 [==>-------------------------------------------------------------------------------------]   3%
  436/12870 [==>-------------------------------------------------------------------------------------]   3%
  437/12870 [==>-------------------------------------------------------------------------------------]   3%
  438/12870 [==>-------------------------------------------------------------------------------------]   3%
  439/12870 [==>-------------------------------------------------------------------------------------]   3%
  440/12870 [==>-------------------------------------------------------------------------------------]   3%
  441/12870 [==>-------------------------------------------------------------------------------------]   3%
  442/12870 [==>-------------------------------------------------------------------------------------]   3%
  443/12870 [==>-------------------------------------------------------------------------------------]   3%
  444/12870 [==>-------------------------------------------------------------------------------------]   3%
  445/12870 [==>-------------------------------------------------------------------------------------]   3%
  446/12870 [==>-------------------------------------------------------------------------------------]   3%
  447/12870 [==>-------------------------------------------------------------------------------------]   3%
  448/12870 [==>-------------------------------------------------------------------------------------]   3%
  449/12870 [==>-------------------------------------------------------------------------------------]   3%
  450/12870 [==>-------------------------------------------------------------------------------------]   3%
  451/12870 [==>-------------------------------------------------------------------------------------]   4%
  452/12870 [==>-------------------------------------------------------------------------------------]   4%
  453/12870 [==>-------------------------------------------------------------------------------------]   4%
  454/12870 [==>-------------------------------------------------------------------------------------]   4%
  455/12870 [==>-------------------------------------------------------------------------------------]   4%
  456/12870 [==>-------------------------------------------------------------------------------------]   4%
  457/12870 [==>-------------------------------------------------------------------------------------]   4%
  458/12870 [==>-------------------------------------------------------------------------------------]   4%
  459/12870 [==>-------------------------------------------------------------------------------------]   4%
  460/12870 [==>-------------------------------------------------------------------------------------]   4%
  461/12870 [==>-------------------------------------------------------------------------------------]   4%
  462/12870 [==>-------------------------------------------------------------------------------------]   4%
  463/12870 [==>-------------------------------------------------------------------------------------]   4%
  464/12870 [==>-------------------------------------------------------------------------------------]   4%
  465/12870 [==>-------------------------------------------------------------------------------------]   4%
  466/12870 [==>-------------------------------------------------------------------------------------]   4%
  467/12870 [==>-------------------------------------------------------------------------------------]   4%
  468/12870 [==>-------------------------------------------------------------------------------------]   4%
  469/12870 [==>-------------------------------------------------------------------------------------]   4%
  470/12870 [==>-------------------------------------------------------------------------------------]   4%
  471/12870 [==>-------------------------------------------------------------------------------------]   4%
  472/12870 [==>-------------------------------------------------------------------------------------]   4%
  473/12870 [==>-------------------------------------------------------------------------------------]   4%
  474/12870 [==>-------------------------------------------------------------------------------------]   4%
  475/12870 [==>-------------------------------------------------------------------------------------]   4%
  476/12870 [==>-------------------------------------------------------------------------------------]   4%
  477/12870 [==>-------------------------------------------------------------------------------------]   4%
  478/12870 [==>-------------------------------------------------------------------------------------]   4%
  479/12870 [==>-------------------------------------------------------------------------------------]   4%
  480/12870 [==>-------------------------------------------------------------------------------------]   4%
  481/12870 [==>-------------------------------------------------------------------------------------]   4%
  482/12870 [==>-------------------------------------------------------------------------------------]   4%
  483/12870 [==>-------------------------------------------------------------------------------------]   4%
  484/12870 [==>-------------------------------------------------------------------------------------]   4%
  485/12870 [==>-------------------------------------------------------------------------------------]   4%
  486/12870 [==>-------------------------------------------------------------------------------------]   4%
  487/12870 [==>-------------------------------------------------------------------------------------]   4%
  488/12870 [==>-------------------------------------------------------------------------------------]   4%
  489/12870 [==>-------------------------------------------------------------------------------------]   4%
  490/12870 [==>-------------------------------------------------------------------------------------]   4%
  491/12870 [==>-------------------------------------------------------------------------------------]   4%
  492/12870 [==>-------------------------------------------------------------------------------------]   4%
  493/12870 [==>-------------------------------------------------------------------------------------]   4%
  494/12870 [==>-------------------------------------------------------------------------------------]   4%
  495/12870 [==>-------------------------------------------------------------------------------------]   4%
  496/12870 [==>-------------------------------------------------------------------------------------]   4%
  497/12870 [==>-------------------------------------------------------------------------------------]   4%
  498/12870 [==>-------------------------------------------------------------------------------------]   4%
  499/12870 [==>-------------------------------------------------------------------------------------]   4%
  500/12870 [==>-------------------------------------------------------------------------------------]   4%
  501/12870 [==>-------------------------------------------------------------------------------------]   4%
  502/12870 [==>-------------------------------------------------------------------------------------]   4%
  503/12870 [==>-------------------------------------------------------------------------------------]   4%
  504/12870 [==>-------------------------------------------------------------------------------------]   4%
  505/12870 [==>-------------------------------------------------------------------------------------]   4%
  506/12870 [==>-------------------------------------------------------------------------------------]   4%
  507/12870 [==>-------------------------------------------------------------------------------------]   4%
  508/12870 [==>-------------------------------------------------------------------------------------]   4%
  509/12870 [==>-------------------------------------------------------------------------------------]   4%
  510/12870 [==>-------------------------------------------------------------------------------------]   4%
  511/12870 [==>-------------------------------------------------------------------------------------]   4%
  512/12870 [===>------------------------------------------------------------------------------------]   4%
  513/12870 [===>------------------------------------------------------------------------------------]   4%
  514/12870 [===>------------------------------------------------------------------------------------]   4%
  515/12870 [===>------------------------------------------------------------------------------------]   4%
  516/12870 [===>------------------------------------------------------------------------------------]   4%
  517/12870 [===>------------------------------------------------------------------------------------]   4%
  518/12870 [===>------------------------------------------------------------------------------------]   4%
  519/12870 [===>------------------------------------------------------------------------------------]   4%
  520/12870 [===>------------------------------------------------------------------------------------]   4%
  521/12870 [===>------------------------------------------------------------------------------------]   4%
  522/12870 [===>------------------------------------------------------------------------------------]   4%
  523/12870 [===>------------------------------------------------------------------------------------]   4%
  524/12870 [===>------------------------------------------------------------------------------------]   4%
  525/12870 [===>------------------------------------------------------------------------------------]   4%
  526/12870 [===>------------------------------------------------------------------------------------]   4%
  527/12870 [===>------------------------------------------------------------------------------------]   4%
  528/12870 [===>------------------------------------------------------------------------------------]   4%
  529/12870 [===>------------------------------------------------------------------------------------]   4%
  530/12870 [===>------------------------------------------------------------------------------------]   4%
  531/12870 [===>------------------------------------------------------------------------------------]   4%
  532/12870 [===>------------------------------------------------------------------------------------]   4%
  533/12870 [===>------------------------------------------------------------------------------------]   4%
  534/12870 [===>------------------------------------------------------------------------------------]   4%
  535/12870 [===>------------------------------------------------------------------------------------]   4%
  536/12870 [===>------------------------------------------------------------------------------------]   4%
  537/12870 [===>------------------------------------------------------------------------------------]   4%
  538/12870 [===>------------------------------------------------------------------------------------]   4%
  539/12870 [===>------------------------------------------------------------------------------------]   4%
  540/12870 [===>------------------------------------------------------------------------------------]   4%
  541/12870 [===>------------------------------------------------------------------------------------]   4%
  542/12870 [===>------------------------------------------------------------------------------------]   4%
  543/12870 [===>------------------------------------------------------------------------------------]   4%
  544/12870 [===>------------------------------------------------------------------------------------]   4%
  545/12870 [===>------------------------------------------------------------------------------------]   4%
  546/12870 [===>------------------------------------------------------------------------------------]   4%
  547/12870 [===>------------------------------------------------------------------------------------]   4%
  548/12870 [===>------------------------------------------------------------------------------------]   4%
  549/12870 [===>------------------------------------------------------------------------------------]   4%
  550/12870 [===>------------------------------------------------------------------------------------]   4%
  551/12870 [===>------------------------------------------------------------------------------------]   4%
  552/12870 [===>------------------------------------------------------------------------------------]   4%
  553/12870 [===>------------------------------------------------------------------------------------]   4%
  554/12870 [===>------------------------------------------------------------------------------------]   4%
  555/12870 [===>------------------------------------------------------------------------------------]   4%
  556/12870 [===>------------------------------------------------------------------------------------]   4%
  557/12870 [===>------------------------------------------------------------------------------------]   4%
  558/12870 [===>------------------------------------------------------------------------------------]   4%
  559/12870 [===>------------------------------------------------------------------------------------]   4%
  560/12870 [===>------------------------------------------------------------------------------------]   4%
  561/12870 [===>------------------------------------------------------------------------------------]   4%
  562/12870 [===>------------------------------------------------------------------------------------]   4%
  563/12870 [===>------------------------------------------------------------------------------------]   4%
  564/12870 [===>------------------------------------------------------------------------------------]   4%
  565/12870 [===>------------------------------------------------------------------------------------]   4%
  566/12870 [===>------------------------------------------------------------------------------------]   4%
  567/12870 [===>------------------------------------------------------------------------------------]   4%
  568/12870 [===>------------------------------------------------------------------------------------]   4%
  569/12870 [===>------------------------------------------------------------------------------------]   4%
  570/12870 [===>------------------------------------------------------------------------------------]   4%
  571/12870 [===>------------------------------------------------------------------------------------]   4%
  572/12870 [===>------------------------------------------------------------------------------------]   4%
  573/12870 [===>------------------------------------------------------------------------------------]   4%
  574/12870 [===>------------------------------------------------------------------------------------]   4%
  575/12870 [===>------------------------------------------------------------------------------------]   4%
  576/12870 [===>------------------------------------------------------------------------------------]   4%
  577/12870 [===>------------------------------------------------------------------------------------]   4%
  578/12870 [===>------------------------------------------------------------------------------------]   4%
  579/12870 [===>------------------------------------------------------------------------------------]   4%
  580/12870 [===>------------------------------------------------------------------------------------]   5%
  581/12870 [===>------------------------------------------------------------------------------------]   5%
  582/12870 [===>------------------------------------------------------------------------------------]   5%
  583/12870 [===>------------------------------------------------------------------------------------]   5%
  584/12870 [===>------------------------------------------------------------------------------------]   5%
  585/12870 [===>------------------------------------------------------------------------------------]   5%
  586/12870 [===>------------------------------------------------------------------------------------]   5%
  587/12870 [===>------------------------------------------------------------------------------------]   5%
  588/12870 [===>------------------------------------------------------------------------------------]   5%
  589/12870 [===>------------------------------------------------------------------------------------]   5%
  590/12870 [===>------------------------------------------------------------------------------------]   5%
  591/12870 [===>------------------------------------------------------------------------------------]   5%
  592/12870 [===>------------------------------------------------------------------------------------]   5%
  593/12870 [===>------------------------------------------------------------------------------------]   5%
  594/12870 [===>------------------------------------------------------------------------------------]   5%
  595/12870 [===>------------------------------------------------------------------------------------]   5%
  596/12870 [===>------------------------------------------------------------------------------------]   5%
  597/12870 [===>------------------------------------------------------------------------------------]   5%
  598/12870 [===>------------------------------------------------------------------------------------]   5%
  599/12870 [===>------------------------------------------------------------------------------------]   5%
  600/12870 [===>------------------------------------------------------------------------------------]   5%
  601/12870 [===>------------------------------------------------------------------------------------]   5%
  602/12870 [===>------------------------------------------------------------------------------------]   5%
  603/12870 [===>------------------------------------------------------------------------------------]   5%
  604/12870 [===>------------------------------------------------------------------------------------]   5%
  605/12870 [===>------------------------------------------------------------------------------------]   5%
  606/12870 [===>------------------------------------------------------------------------------------]   5%
  607/12870 [===>------------------------------------------------------------------------------------]   5%
  608/12870 [===>------------------------------------------------------------------------------------]   5%
  609/12870 [===>------------------------------------------------------------------------------------]   5%
  610/12870 [===>------------------------------------------------------------------------------------]   5%
  611/12870 [===>------------------------------------------------------------------------------------]   5%
  612/12870 [===>------------------------------------------------------------------------------------]   5%
  613/12870 [===>------------------------------------------------------------------------------------]   5%
  614/12870 [===>------------------------------------------------------------------------------------]   5%
  615/12870 [===>------------------------------------------------------------------------------------]   5%
  616/12870 [===>------------------------------------------------------------------------------------]   5%
  617/12870 [===>------------------------------------------------------------------------------------]   5%
  618/12870 [===>------------------------------------------------------------------------------------]   5%
  619/12870 [===>------------------------------------------------------------------------------------]   5%
  620/12870 [===>------------------------------------------------------------------------------------]   5%
  621/12870 [===>------------------------------------------------------------------------------------]   5%
  622/12870 [===>------------------------------------------------------------------------------------]   5%
  623/12870 [===>------------------------------------------------------------------------------------]   5%
  624/12870 [===>------------------------------------------------------------------------------------]   5%
  625/12870 [===>------------------------------------------------------------------------------------]   5%
  626/12870 [===>------------------------------------------------------------------------------------]   5%
  627/12870 [===>------------------------------------------------------------------------------------]   5%
  628/12870 [===>------------------------------------------------------------------------------------]   5%
  629/12870 [===>------------------------------------------------------------------------------------]   5%
  630/12870 [===>------------------------------------------------------------------------------------]   5%
  631/12870 [===>------------------------------------------------------------------------------------]   5%
  632/12870 [===>------------------------------------------------------------------------------------]   5%
  633/12870 [===>------------------------------------------------------------------------------------]   5%
  634/12870 [===>------------------------------------------------------------------------------------]   5%
  635/12870 [===>------------------------------------------------------------------------------------]   5%
  636/12870 [===>------------------------------------------------------------------------------------]   5%
  637/12870 [===>------------------------------------------------------------------------------------]   5%
  638/12870 [===>------------------------------------------------------------------------------------]   5%
  639/12870 [===>------------------------------------------------------------------------------------]   5%
  640/12870 [===>------------------------------------------------------------------------------------]   5%
  641/12870 [===>------------------------------------------------------------------------------------]   5%
  642/12870 [===>------------------------------------------------------------------------------------]   5%
  643/12870 [===>------------------------------------------------------------------------------------]   5%
  644/12870 [===>------------------------------------------------------------------------------------]   5%
  645/12870 [===>------------------------------------------------------------------------------------]   5%
  646/12870 [===>------------------------------------------------------------------------------------]   5%
  647/12870 [===>------------------------------------------------------------------------------------]   5%
  648/12870 [===>------------------------------------------------------------------------------------]   5%
  649/12870 [===>------------------------------------------------------------------------------------]   5%
  650/12870 [===>------------------------------------------------------------------------------------]   5%
  651/12870 [===>------------------------------------------------------------------------------------]   5%
  652/12870 [===>------------------------------------------------------------------------------------]   5%
  653/12870 [===>------------------------------------------------------------------------------------]   5%
  654/12870 [===>------------------------------------------------------------------------------------]   5%
  655/12870 [===>------------------------------------------------------------------------------------]   5%
  656/12870 [===>------------------------------------------------------------------------------------]   5%
  657/12870 [===>------------------------------------------------------------------------------------]   5%
  658/12870 [===>------------------------------------------------------------------------------------]   5%
  659/12870 [====>-----------------------------------------------------------------------------------]   5%
  660/12870 [====>-----------------------------------------------------------------------------------]   5%
  661/12870 [====>-----------------------------------------------------------------------------------]   5%
  662/12870 [====>-----------------------------------------------------------------------------------]   5%
  663/12870 [====>-----------------------------------------------------------------------------------]   5%
  664/12870 [====>-----------------------------------------------------------------------------------]   5%
  665/12870 [====>-----------------------------------------------------------------------------------]   5%
  666/12870 [====>-----------------------------------------------------------------------------------]   5%
  667/12870 [====>-----------------------------------------------------------------------------------]   5%
  668/12870 [====>-----------------------------------------------------------------------------------]   5%
  669/12870 [====>-----------------------------------------------------------------------------------]   5%
  670/12870 [====>-----------------------------------------------------------------------------------]   5%
  671/12870 [====>-----------------------------------------------------------------------------------]   5%
  672/12870 [====>-----------------------------------------------------------------------------------]   5%
  673/12870 [====>-----------------------------------------------------------------------------------]   5%
  674/12870 [====>-----------------------------------------------------------------------------------]   5%
  675/12870 [====>-----------------------------------------------------------------------------------]   5%
  676/12870 [====>-----------------------------------------------------------------------------------]   5%
  677/12870 [====>-----------------------------------------------------------------------------------]   5%
  678/12870 [====>-----------------------------------------------------------------------------------]   5%
  679/12870 [====>-----------------------------------------------------------------------------------]   5%
  680/12870 [====>-----------------------------------------------------------------------------------]   5%
  681/12870 [====>-----------------------------------------------------------------------------------]   5%
  682/12870 [====>-----------------------------------------------------------------------------------]   5%
  683/12870 [====>-----------------------------------------------------------------------------------]   5%
  684/12870 [====>-----------------------------------------------------------------------------------]   5%
  685/12870 [====>-----------------------------------------------------------------------------------]   5%
  686/12870 [====>-----------------------------------------------------------------------------------]   5%
  687/12870 [====>-----------------------------------------------------------------------------------]   5%
  688/12870 [====>-----------------------------------------------------------------------------------]   5%
  689/12870 [====>-----------------------------------------------------------------------------------]   5%
  690/12870 [====>-----------------------------------------------------------------------------------]   5%
  691/12870 [====>-----------------------------------------------------------------------------------]   5%
  692/12870 [====>-----------------------------------------------------------------------------------]   5%
  693/12870 [====>-----------------------------------------------------------------------------------]   5%
  694/12870 [====>-----------------------------------------------------------------------------------]   5%
  695/12870 [====>-----------------------------------------------------------------------------------]   5%
  696/12870 [====>-----------------------------------------------------------------------------------]   5%
  697/12870 [====>-----------------------------------------------------------------------------------]   5%
  698/12870 [====>-----------------------------------------------------------------------------------]   5%
  699/12870 [====>-----------------------------------------------------------------------------------]   5%
  700/12870 [====>-----------------------------------------------------------------------------------]   5%
  701/12870 [====>-----------------------------------------------------------------------------------]   5%
  702/12870 [====>-----------------------------------------------------------------------------------]   5%
  703/12870 [====>-----------------------------------------------------------------------------------]   5%
  704/12870 [====>-----------------------------------------------------------------------------------]   5%
  705/12870 [====>-----------------------------------------------------------------------------------]   5%
  706/12870 [====>-----------------------------------------------------------------------------------]   5%
  707/12870 [====>-----------------------------------------------------------------------------------]   5%
  708/12870 [====>-----------------------------------------------------------------------------------]   6%
  709/12870 [====>-----------------------------------------------------------------------------------]   6%
  710/12870 [====>-----------------------------------------------------------------------------------]   6%
  711/12870 [====>-----------------------------------------------------------------------------------]   6%
  712/12870 [====>-----------------------------------------------------------------------------------]   6%
  713/12870 [====>-----------------------------------------------------------------------------------]   6%
  714/12870 [====>-----------------------------------------------------------------------------------]   6%
  715/12870 [====>-----------------------------------------------------------------------------------]   6%
  716/12870 [====>-----------------------------------------------------------------------------------]   6%
  717/12870 [====>-----------------------------------------------------------------------------------]   6%
  718/12870 [====>-----------------------------------------------------------------------------------]   6%
  719/12870 [====>-----------------------------------------------------------------------------------]   6%
  720/12870 [====>-----------------------------------------------------------------------------------]   6%
  721/12870 [====>-----------------------------------------------------------------------------------]   6%
  722/12870 [====>-----------------------------------------------------------------------------------]   6%
  723/12870 [====>-----------------------------------------------------------------------------------]   6%
  724/12870 [====>-----------------------------------------------------------------------------------]   6%
  725/12870 [====>-----------------------------------------------------------------------------------]   6%
  726/12870 [====>-----------------------------------------------------------------------------------]   6%
  727/12870 [====>-----------------------------------------------------------------------------------]   6%
  728/12870 [====>-----------------------------------------------------------------------------------]   6%
  729/12870 [====>-----------------------------------------------------------------------------------]   6%
  730/12870 [====>-----------------------------------------------------------------------------------]   6%
  731/12870 [====>-----------------------------------------------------------------------------------]   6%
  732/12870 [====>-----------------------------------------------------------------------------------]   6%
  733/12870 [====>-----------------------------------------------------------------------------------]   6%
  734/12870 [====>-----------------------------------------------------------------------------------]   6%
  735/12870 [====>-----------------------------------------------------------------------------------]   6%
  736/12870 [====>-----------------------------------------------------------------------------------]   6%
  737/12870 [====>-----------------------------------------------------------------------------------]   6%
  738/12870 [====>-----------------------------------------------------------------------------------]   6%
  739/12870 [====>-----------------------------------------------------------------------------------]   6%
  740/12870 [====>-----------------------------------------------------------------------------------]   6%
  741/12870 [====>-----------------------------------------------------------------------------------]   6%
  742/12870 [====>-----------------------------------------------------------------------------------]   6%
  743/12870 [====>-----------------------------------------------------------------------------------]   6%
  744/12870 [====>-----------------------------------------------------------------------------------]   6%
  745/12870 [====>-----------------------------------------------------------------------------------]   6%
  746/12870 [====>-----------------------------------------------------------------------------------]   6%
  747/12870 [====>-----------------------------------------------------------------------------------]   6%
  748/12870 [====>-----------------------------------------------------------------------------------]   6%
  749/12870 [====>-----------------------------------------------------------------------------------]   6%
  750/12870 [====>-----------------------------------------------------------------------------------]   6%
  751/12870 [====>-----------------------------------------------------------------------------------]   6%
  752/12870 [====>-----------------------------------------------------------------------------------]   6%
  753/12870 [====>-----------------------------------------------------------------------------------]   6%
  754/12870 [====>-----------------------------------------------------------------------------------]   6%
  755/12870 [====>-----------------------------------------------------------------------------------]   6%
  756/12870 [====>-----------------------------------------------------------------------------------]   6%
  757/12870 [====>-----------------------------------------------------------------------------------]   6%
  758/12870 [====>-----------------------------------------------------------------------------------]   6%
  759/12870 [====>-----------------------------------------------------------------------------------]   6%
  760/12870 [====>-----------------------------------------------------------------------------------]   6%
  761/12870 [====>-----------------------------------------------------------------------------------]   6%
  762/12870 [====>-----------------------------------------------------------------------------------]   6%
  763/12870 [====>-----------------------------------------------------------------------------------]   6%
  764/12870 [====>-----------------------------------------------------------------------------------]   6%
  765/12870 [====>-----------------------------------------------------------------------------------]   6%
  766/12870 [====>-----------------------------------------------------------------------------------]   6%
  767/12870 [====>-----------------------------------------------------------------------------------]   6%
  768/12870 [====>-----------------------------------------------------------------------------------]   6%
  769/12870 [====>-----------------------------------------------------------------------------------]   6%
  770/12870 [====>-----------------------------------------------------------------------------------]   6%
  771/12870 [====>-----------------------------------------------------------------------------------]   6%
  772/12870 [====>-----------------------------------------------------------------------------------]   6%
  773/12870 [====>-----------------------------------------------------------------------------------]   6%
  774/12870 [====>-----------------------------------------------------------------------------------]   6%
  775/12870 [====>-----------------------------------------------------------------------------------]   6%
  776/12870 [====>-----------------------------------------------------------------------------------]   6%
  777/12870 [====>-----------------------------------------------------------------------------------]   6%
  778/12870 [====>-----------------------------------------------------------------------------------]   6%
  779/12870 [====>-----------------------------------------------------------------------------------]   6%
  780/12870 [====>-----------------------------------------------------------------------------------]   6%
  781/12870 [====>-----------------------------------------------------------------------------------]   6%
  782/12870 [====>-----------------------------------------------------------------------------------]   6%
  783/12870 [====>-----------------------------------------------------------------------------------]   6%
  784/12870 [====>-----------------------------------------------------------------------------------]   6%
  785/12870 [====>-----------------------------------------------------------------------------------]   6%
  786/12870 [====>-----------------------------------------------------------------------------------]   6%
  787/12870 [====>-----------------------------------------------------------------------------------]   6%
  788/12870 [====>-----------------------------------------------------------------------------------]   6%
  789/12870 [====>-----------------------------------------------------------------------------------]   6%
  790/12870 [====>-----------------------------------------------------------------------------------]   6%
  791/12870 [====>-----------------------------------------------------------------------------------]   6%
  792/12870 [====>-----------------------------------------------------------------------------------]   6%
  793/12870 [====>-----------------------------------------------------------------------------------]   6%
  794/12870 [====>-----------------------------------------------------------------------------------]   6%
  795/12870 [====>-----------------------------------------------------------------------------------]   6%
  796/12870 [====>-----------------------------------------------------------------------------------]   6%
  797/12870 [====>-----------------------------------------------------------------------------------]   6%
  798/12870 [====>-----------------------------------------------------------------------------------]   6%
  799/12870 [====>-----------------------------------------------------------------------------------]   6%
  800/12870 [====>-----------------------------------------------------------------------------------]   6%
  801/12870 [====>-----------------------------------------------------------------------------------]   6%
  802/12870 [====>-----------------------------------------------------------------------------------]   6%
  803/12870 [====>-----------------------------------------------------------------------------------]   6%
  804/12870 [====>-----------------------------------------------------------------------------------]   6%
  805/12870 [=====>----------------------------------------------------------------------------------]   6%
  806/12870 [=====>----------------------------------------------------------------------------------]   6%
  807/12870 [=====>----------------------------------------------------------------------------------]   6%
  808/12870 [=====>----------------------------------------------------------------------------------]   6%
  809/12870 [=====>----------------------------------------------------------------------------------]   6%
  810/12870 [=====>----------------------------------------------------------------------------------]   6%
  811/12870 [=====>----------------------------------------------------------------------------------]   6%
  812/12870 [=====>----------------------------------------------------------------------------------]   6%
  813/12870 [=====>----------------------------------------------------------------------------------]   6%
  814/12870 [=====>----------------------------------------------------------------------------------]   6%
  815/12870 [=====>----------------------------------------------------------------------------------]   6%
  816/12870 [=====>----------------------------------------------------------------------------------]   6%
  817/12870 [=====>----------------------------------------------------------------------------------]   6%
  818/12870 [=====>----------------------------------------------------------------------------------]   6%
  819/12870 [=====>----------------------------------------------------------------------------------]   6%
  820/12870 [=====>----------------------------------------------------------------------------------]   6%
  821/12870 [=====>----------------------------------------------------------------------------------]   6%
  822/12870 [=====>----------------------------------------------------------------------------------]   6%
  823/12870 [=====>----------------------------------------------------------------------------------]   6%
  824/12870 [=====>----------------------------------------------------------------------------------]   6%
  825/12870 [=====>----------------------------------------------------------------------------------]   6%
  826/12870 [=====>----------------------------------------------------------------------------------]   6%
  827/12870 [=====>----------------------------------------------------------------------------------]   6%
  828/12870 [=====>----------------------------------------------------------------------------------]   6%
  829/12870 [=====>----------------------------------------------------------------------------------]   6%
  830/12870 [=====>----------------------------------------------------------------------------------]   6%
  831/12870 [=====>----------------------------------------------------------------------------------]   6%
  832/12870 [=====>----------------------------------------------------------------------------------]   6%
  833/12870 [=====>----------------------------------------------------------------------------------]   6%
  834/12870 [=====>----------------------------------------------------------------------------------]   6%
  835/12870 [=====>----------------------------------------------------------------------------------]   6%
  836/12870 [=====>----------------------------------------------------------------------------------]   6%
  837/12870 [=====>----------------------------------------------------------------------------------]   7%
  838/12870 [=====>----------------------------------------------------------------------------------]   7%
  839/12870 [=====>----------------------------------------------------------------------------------]   7%
  840/12870 [=====>----------------------------------------------------------------------------------]   7%
  841/12870 [=====>----------------------------------------------------------------------------------]   7%
  842/12870 [=====>----------------------------------------------------------------------------------]   7%
  843/12870 [=====>----------------------------------------------------------------------------------]   7%
  844/12870 [=====>----------------------------------------------------------------------------------]   7%
  845/12870 [=====>----------------------------------------------------------------------------------]   7%
  846/12870 [=====>----------------------------------------------------------------------------------]   7%
  847/12870 [=====>----------------------------------------------------------------------------------]   7%
  848/12870 [=====>----------------------------------------------------------------------------------]   7%
  849/12870 [=====>----------------------------------------------------------------------------------]   7%
  850/12870 [=====>----------------------------------------------------------------------------------]   7%
  851/12870 [=====>----------------------------------------------------------------------------------]   7%
  852/12870 [=====>----------------------------------------------------------------------------------]   7%
  853/12870 [=====>----------------------------------------------------------------------------------]   7%
  854/12870 [=====>----------------------------------------------------------------------------------]   7%
  855/12870 [=====>----------------------------------------------------------------------------------]   7%
  856/12870 [=====>----------------------------------------------------------------------------------]   7%
  857/12870 [=====>----------------------------------------------------------------------------------]   7%
  858/12870 [=====>----------------------------------------------------------------------------------]   7%
  859/12870 [=====>----------------------------------------------------------------------------------]   7%
  860/12870 [=====>----------------------------------------------------------------------------------]   7%
  861/12870 [=====>----------------------------------------------------------------------------------]   7%
  862/12870 [=====>----------------------------------------------------------------------------------]   7%
  863/12870 [=====>----------------------------------------------------------------------------------]   7%
  864/12870 [=====>----------------------------------------------------------------------------------]   7%
  865/12870 [=====>----------------------------------------------------------------------------------]   7%
  866/12870 [=====>----------------------------------------------------------------------------------]   7%
  867/12870 [=====>----------------------------------------------------------------------------------]   7%
  868/12870 [=====>----------------------------------------------------------------------------------]   7%
  869/12870 [=====>----------------------------------------------------------------------------------]   7%
  870/12870 [=====>----------------------------------------------------------------------------------]   7%
  871/12870 [=====>----------------------------------------------------------------------------------]   7%
  872/12870 [=====>----------------------------------------------------------------------------------]   7%
  873/12870 [=====>----------------------------------------------------------------------------------]   7%
  874/12870 [=====>----------------------------------------------------------------------------------]   7%
  875/12870 [=====>----------------------------------------------------------------------------------]   7%
  876/12870 [=====>----------------------------------------------------------------------------------]   7%
  877/12870 [=====>----------------------------------------------------------------------------------]   7%
  878/12870 [=====>----------------------------------------------------------------------------------]   7%
  879/12870 [=====>----------------------------------------------------------------------------------]   7%
  880/12870 [=====>----------------------------------------------------------------------------------]   7%
  881/12870 [=====>----------------------------------------------------------------------------------]   7%
  882/12870 [=====>----------------------------------------------------------------------------------]   7%
  883/12870 [=====>----------------------------------------------------------------------------------]   7%
  884/12870 [=====>----------------------------------------------------------------------------------]   7%
  885/12870 [=====>----------------------------------------------------------------------------------]   7%
  886/12870 [=====>----------------------------------------------------------------------------------]   7%
  887/12870 [=====>----------------------------------------------------------------------------------]   7%
  888/12870 [=====>----------------------------------------------------------------------------------]   7%
  889/12870 [=====>----------------------------------------------------------------------------------]   7%
  890/12870 [=====>----------------------------------------------------------------------------------]   7%
  891/12870 [=====>----------------------------------------------------------------------------------]   7%
  892/12870 [=====>----------------------------------------------------------------------------------]   7%
  893/12870 [=====>----------------------------------------------------------------------------------]   7%
  894/12870 [=====>----------------------------------------------------------------------------------]   7%
  895/12870 [=====>----------------------------------------------------------------------------------]   7%
  896/12870 [=====>----------------------------------------------------------------------------------]   7%
  897/12870 [=====>----------------------------------------------------------------------------------]   7%
  898/12870 [=====>----------------------------------------------------------------------------------]   7%
  899/12870 [=====>----------------------------------------------------------------------------------]   7%
  900/12870 [=====>----------------------------------------------------------------------------------]   7%
  901/12870 [=====>----------------------------------------------------------------------------------]   7%
  902/12870 [=====>----------------------------------------------------------------------------------]   7%
  903/12870 [=====>----------------------------------------------------------------------------------]   7%
  904/12870 [=====>----------------------------------------------------------------------------------]   7%
  905/12870 [=====>----------------------------------------------------------------------------------]   7%
  906/12870 [=====>----------------------------------------------------------------------------------]   7%
  907/12870 [=====>----------------------------------------------------------------------------------]   7%
  908/12870 [=====>----------------------------------------------------------------------------------]   7%
  909/12870 [=====>----------------------------------------------------------------------------------]   7%
  910/12870 [=====>----------------------------------------------------------------------------------]   7%
  911/12870 [=====>----------------------------------------------------------------------------------]   7%
  912/12870 [=====>----------------------------------------------------------------------------------]   7%
  913/12870 [=====>----------------------------------------------------------------------------------]   7%
  914/12870 [=====>----------------------------------------------------------------------------------]   7%
  915/12870 [=====>----------------------------------------------------------------------------------]   7%
  916/12870 [=====>----------------------------------------------------------------------------------]   7%
  917/12870 [=====>----------------------------------------------------------------------------------]   7%
  918/12870 [=====>----------------------------------------------------------------------------------]   7%
  919/12870 [=====>----------------------------------------------------------------------------------]   7%
  920/12870 [=====>----------------------------------------------------------------------------------]   7%
  921/12870 [=====>----------------------------------------------------------------------------------]   7%
  922/12870 [=====>----------------------------------------------------------------------------------]   7%
  923/12870 [=====>----------------------------------------------------------------------------------]   7%
  924/12870 [=====>----------------------------------------------------------------------------------]   7%
  925/12870 [=====>----------------------------------------------------------------------------------]   7%
  926/12870 [=====>----------------------------------------------------------------------------------]   7%
  927/12870 [=====>----------------------------------------------------------------------------------]   7%
  928/12870 [=====>----------------------------------------------------------------------------------]   7%
  929/12870 [=====>----------------------------------------------------------------------------------]   7%
  930/12870 [=====>----------------------------------------------------------------------------------]   7%
  931/12870 [=====>----------------------------------------------------------------------------------]   7%
  932/12870 [=====>----------------------------------------------------------------------------------]   7%
  933/12870 [=====>----------------------------------------------------------------------------------]   7%
  934/12870 [=====>----------------------------------------------------------------------------------]   7%
  935/12870 [=====>----------------------------------------------------------------------------------]   7%
  936/12870 [=====>----------------------------------------------------------------------------------]   7%
  937/12870 [=====>----------------------------------------------------------------------------------]   7%
  938/12870 [=====>----------------------------------------------------------------------------------]   7%
  939/12870 [=====>----------------------------------------------------------------------------------]   7%
  940/12870 [=====>----------------------------------------------------------------------------------]   7%
  941/12870 [=====>----------------------------------------------------------------------------------]   7%
  942/12870 [=====>----------------------------------------------------------------------------------]   7%
  943/12870 [=====>----------------------------------------------------------------------------------]   7%
  944/12870 [=====>----------------------------------------------------------------------------------]   7%
  945/12870 [=====>----------------------------------------------------------------------------------]   7%
  946/12870 [=====>----------------------------------------------------------------------------------]   7%
  947/12870 [=====>----------------------------------------------------------------------------------]   7%
  948/12870 [=====>----------------------------------------------------------------------------------]   7%
  949/12870 [=====>----------------------------------------------------------------------------------]   7%
  950/12870 [=====>----------------------------------------------------------------------------------]   7%
  951/12870 [======>---------------------------------------------------------------------------------]   7%
  952/12870 [======>---------------------------------------------------------------------------------]   7%
  953/12870 [======>---------------------------------------------------------------------------------]   7%
  954/12870 [======>---------------------------------------------------------------------------------]   7%
  955/12870 [======>---------------------------------------------------------------------------------]   7%
  956/12870 [======>---------------------------------------------------------------------------------]   7%
  957/12870 [======>---------------------------------------------------------------------------------]   7%
  958/12870 [======>---------------------------------------------------------------------------------]   7%
  959/12870 [======>---------------------------------------------------------------------------------]   7%
  960/12870 [======>---------------------------------------------------------------------------------]   7%
  961/12870 [======>---------------------------------------------------------------------------------]   7%
  962/12870 [======>---------------------------------------------------------------------------------]   7%
  963/12870 [======>---------------------------------------------------------------------------------]   7%
  964/12870 [======>---------------------------------------------------------------------------------]   7%
  965/12870 [======>---------------------------------------------------------------------------------]   7%
  966/12870 [======>---------------------------------------------------------------------------------]   8%
  967/12870 [======>---------------------------------------------------------------------------------]   8%
  968/12870 [======>---------------------------------------------------------------------------------]   8%
  969/12870 [======>---------------------------------------------------------------------------------]   8%
  970/12870 [======>---------------------------------------------------------------------------------]   8%
  971/12870 [======>---------------------------------------------------------------------------------]   8%
  972/12870 [======>---------------------------------------------------------------------------------]   8%
  973/12870 [======>---------------------------------------------------------------------------------]   8%
  974/12870 [======>---------------------------------------------------------------------------------]   8%
  975/12870 [======>---------------------------------------------------------------------------------]   8%
  976/12870 [======>---------------------------------------------------------------------------------]   8%
  977/12870 [======>---------------------------------------------------------------------------------]   8%
  978/12870 [======>---------------------------------------------------------------------------------]   8%
  979/12870 [======>---------------------------------------------------------------------------------]   8%
  980/12870 [======>---------------------------------------------------------------------------------]   8%
  981/12870 [======>---------------------------------------------------------------------------------]   8%
  982/12870 [======>---------------------------------------------------------------------------------]   8%
  983/12870 [======>---------------------------------------------------------------------------------]   8%
  984/12870 [======>---------------------------------------------------------------------------------]   8%
  985/12870 [======>---------------------------------------------------------------------------------]   8%
  986/12870 [======>---------------------------------------------------------------------------------]   8%
  987/12870 [======>---------------------------------------------------------------------------------]   8%
  988/12870 [======>---------------------------------------------------------------------------------]   8%
  989/12870 [======>---------------------------------------------------------------------------------]   8%
  990/12870 [======>---------------------------------------------------------------------------------]   8%
  991/12870 [======>---------------------------------------------------------------------------------]   8%
  992/12870 [======>---------------------------------------------------------------------------------]   8%
  993/12870 [======>---------------------------------------------------------------------------------]   8%
  994/12870 [======>---------------------------------------------------------------------------------]   8%
  995/12870 [======>---------------------------------------------------------------------------------]   8%
  996/12870 [======>---------------------------------------------------------------------------------]   8%
  997/12870 [======>---------------------------------------------------------------------------------]   8%
  998/12870 [======>---------------------------------------------------------------------------------]   8%
  999/12870 [======>---------------------------------------------------------------------------------]   8%
  1000/12870 [======>--------------------------------------------------------------------------------]   8%
  1001/12870 [======>--------------------------------------------------------------------------------]   8%
  1002/12870 [======>--------------------------------------------------------------------------------]   8%
  1003/12870 [======>--------------------------------------------------------------------------------]   8%
  1004/12870 [======>--------------------------------------------------------------------------------]   8%
  1005/12870 [======>--------------------------------------------------------------------------------]   8%
  1006/12870 [======>--------------------------------------------------------------------------------]   8%
  1007/12870 [======>--------------------------------------------------------------------------------]   8%
  1008/12870 [======>--------------------------------------------------------------------------------]   8%
  1009/12870 [======>--------------------------------------------------------------------------------]   8%
  1010/12870 [======>--------------------------------------------------------------------------------]   8%
  1011/12870 [======>--------------------------------------------------------------------------------]   8%
  1012/12870 [======>--------------------------------------------------------------------------------]   8%
  1013/12870 [======>--------------------------------------------------------------------------------]   8%
  1014/12870 [======>--------------------------------------------------------------------------------]   8%
  1015/12870 [======>--------------------------------------------------------------------------------]   8%
  1016/12870 [======>--------------------------------------------------------------------------------]   8%
  1017/12870 [======>--------------------------------------------------------------------------------]   8%
  1018/12870 [======>--------------------------------------------------------------------------------]   8%
  1019/12870 [======>--------------------------------------------------------------------------------]   8%
  1020/12870 [======>--------------------------------------------------------------------------------]   8%
  1021/12870 [======>--------------------------------------------------------------------------------]   8%
  1022/12870 [======>--------------------------------------------------------------------------------]   8%
  1023/12870 [======>--------------------------------------------------------------------------------]   8%
  1024/12870 [======>--------------------------------------------------------------------------------]   8%
  1025/12870 [======>--------------------------------------------------------------------------------]   8%
  1026/12870 [======>--------------------------------------------------------------------------------]   8%
  1027/12870 [======>--------------------------------------------------------------------------------]   8%
  1028/12870 [======>--------------------------------------------------------------------------------]   8%
  1029/12870 [======>--------------------------------------------------------------------------------]   8%
  1030/12870 [======>--------------------------------------------------------------------------------]   8%
  1031/12870 [======>--------------------------------------------------------------------------------]   8%
  1032/12870 [======>--------------------------------------------------------------------------------]   8%
  1033/12870 [======>--------------------------------------------------------------------------------]   8%
  1034/12870 [======>--------------------------------------------------------------------------------]   8%
  1035/12870 [======>--------------------------------------------------------------------------------]   8%
  1036/12870 [======>--------------------------------------------------------------------------------]   8%
  1037/12870 [======>--------------------------------------------------------------------------------]   8%
  1038/12870 [======>--------------------------------------------------------------------------------]   8%
  1039/12870 [======>--------------------------------------------------------------------------------]   8%
  1040/12870 [======>--------------------------------------------------------------------------------]   8%
  1041/12870 [======>--------------------------------------------------------------------------------]   8%
  1042/12870 [======>--------------------------------------------------------------------------------]   8%
  1043/12870 [======>--------------------------------------------------------------------------------]   8%
  1044/12870 [======>--------------------------------------------------------------------------------]   8%
  1045/12870 [======>--------------------------------------------------------------------------------]   8%
  1046/12870 [======>--------------------------------------------------------------------------------]   8%
  1047/12870 [======>--------------------------------------------------------------------------------]   8%
  1048/12870 [======>--------------------------------------------------------------------------------]   8%
  1049/12870 [======>--------------------------------------------------------------------------------]   8%
  1050/12870 [======>--------------------------------------------------------------------------------]   8%
  1051/12870 [======>--------------------------------------------------------------------------------]   8%
  1052/12870 [======>--------------------------------------------------------------------------------]   8%
  1053/12870 [======>--------------------------------------------------------------------------------]   8%
  1054/12870 [======>--------------------------------------------------------------------------------]   8%
  1055/12870 [======>--------------------------------------------------------------------------------]   8%
  1056/12870 [======>--------------------------------------------------------------------------------]   8%
  1057/12870 [======>--------------------------------------------------------------------------------]   8%
  1058/12870 [======>--------------------------------------------------------------------------------]   8%
  1059/12870 [======>--------------------------------------------------------------------------------]   8%
  1060/12870 [======>--------------------------------------------------------------------------------]   8%
  1061/12870 [======>--------------------------------------------------------------------------------]   8%
  1062/12870 [======>--------------------------------------------------------------------------------]   8%
  1063/12870 [======>--------------------------------------------------------------------------------]   8%
  1064/12870 [======>--------------------------------------------------------------------------------]   8%
  1065/12870 [======>--------------------------------------------------------------------------------]   8%
  1066/12870 [======>--------------------------------------------------------------------------------]   8%
  1067/12870 [======>--------------------------------------------------------------------------------]   8%
  1068/12870 [======>--------------------------------------------------------------------------------]   8%
  1069/12870 [======>--------------------------------------------------------------------------------]   8%
  1070/12870 [======>--------------------------------------------------------------------------------]   8%
  1071/12870 [======>--------------------------------------------------------------------------------]   8%
  1072/12870 [======>--------------------------------------------------------------------------------]   8%
  1073/12870 [======>--------------------------------------------------------------------------------]   8%
  1074/12870 [======>--------------------------------------------------------------------------------]   8%
  1075/12870 [======>--------------------------------------------------------------------------------]   8%
  1076/12870 [======>--------------------------------------------------------------------------------]   8%
  1077/12870 [======>--------------------------------------------------------------------------------]   8%
  1078/12870 [======>--------------------------------------------------------------------------------]   8%
  1079/12870 [======>--------------------------------------------------------------------------------]   8%
  1080/12870 [======>--------------------------------------------------------------------------------]   8%
  1081/12870 [======>--------------------------------------------------------------------------------]   8%
  1082/12870 [======>--------------------------------------------------------------------------------]   8%
  1083/12870 [======>--------------------------------------------------------------------------------]   8%
  1084/12870 [======>--------------------------------------------------------------------------------]   8%
  1085/12870 [======>--------------------------------------------------------------------------------]   8%
  1086/12870 [======>--------------------------------------------------------------------------------]   8%
  1087/12870 [======>--------------------------------------------------------------------------------]   8%
  1088/12870 [======>--------------------------------------------------------------------------------]   8%
  1089/12870 [======>--------------------------------------------------------------------------------]   8%
  1090/12870 [======>--------------------------------------------------------------------------------]   8%
  1091/12870 [======>--------------------------------------------------------------------------------]   8%
  1092/12870 [======>--------------------------------------------------------------------------------]   8%
  1093/12870 [======>--------------------------------------------------------------------------------]   8%
  1094/12870 [======>--------------------------------------------------------------------------------]   9%
  1095/12870 [======>--------------------------------------------------------------------------------]   9%
  1096/12870 [======>--------------------------------------------------------------------------------]   9%
  1097/12870 [======>--------------------------------------------------------------------------------]   9%
  1098/12870 [======>--------------------------------------------------------------------------------]   9%
  1099/12870 [======>--------------------------------------------------------------------------------]   9%
  1100/12870 [======>--------------------------------------------------------------------------------]   9%
  1101/12870 [======>--------------------------------------------------------------------------------]   9%
  1102/12870 [======>--------------------------------------------------------------------------------]   9%
  1103/12870 [======>--------------------------------------------------------------------------------]   9%
  1104/12870 [======>--------------------------------------------------------------------------------]   9%
  1105/12870 [======>--------------------------------------------------------------------------------]   9%
  1106/12870 [======>--------------------------------------------------------------------------------]   9%
  1107/12870 [======>--------------------------------------------------------------------------------]   9%
  1108/12870 [======>--------------------------------------------------------------------------------]   9%
  1109/12870 [======>--------------------------------------------------------------------------------]   9%
  1110/12870 [=======>-------------------------------------------------------------------------------]   9%
  1111/12870 [=======>-------------------------------------------------------------------------------]   9%
  1112/12870 [=======>-------------------------------------------------------------------------------]   9%
  1113/12870 [=======>-------------------------------------------------------------------------------]   9%
  1114/12870 [=======>-------------------------------------------------------------------------------]   9%
  1115/12870 [=======>-------------------------------------------------------------------------------]   9%
  1116/12870 [=======>-------------------------------------------------------------------------------]   9%
  1117/12870 [=======>-------------------------------------------------------------------------------]   9%
  1118/12870 [=======>-------------------------------------------------------------------------------]   9%
  1119/12870 [=======>-------------------------------------------------------------------------------]   9%
  1120/12870 [=======>-------------------------------------------------------------------------------]   9%
  1121/12870 [=======>-------------------------------------------------------------------------------]   9%
  1122/12870 [=======>-------------------------------------------------------------------------------]   9%
  1123/12870 [=======>-------------------------------------------------------------------------------]   9%
  1124/12870 [=======>-------------------------------------------------------------------------------]   9%
  1125/12870 [=======>-------------------------------------------------------------------------------]   9%
  1126/12870 [=======>-------------------------------------------------------------------------------]   9%
  1127/12870 [=======>-------------------------------------------------------------------------------]   9%
  1128/12870 [=======>-------------------------------------------------------------------------------]   9%
  1129/12870 [=======>-------------------------------------------------------------------------------]   9%
  1130/12870 [=======>-------------------------------------------------------------------------------]   9%
  1131/12870 [=======>-------------------------------------------------------------------------------]   9%
  1132/12870 [=======>-------------------------------------------------------------------------------]   9%
  1133/12870 [=======>-------------------------------------------------------------------------------]   9%
  1134/12870 [=======>-------------------------------------------------------------------------------]   9%
  1135/12870 [=======>-------------------------------------------------------------------------------]   9%
  1136/12870 [=======>-------------------------------------------------------------------------------]   9%
  1137/12870 [=======>-------------------------------------------------------------------------------]   9%
  1138/12870 [=======>-------------------------------------------------------------------------------]   9%
  1139/12870 [=======>-------------------------------------------------------------------------------]   9%
  1140/12870 [=======>-------------------------------------------------------------------------------]   9%
  1141/12870 [=======>-------------------------------------------------------------------------------]   9%
  1142/12870 [=======>-------------------------------------------------------------------------------]   9%
  1143/12870 [=======>-------------------------------------------------------------------------------]   9%
  1144/12870 [=======>-------------------------------------------------------------------------------]   9%
  1145/12870 [=======>-------------------------------------------------------------------------------]   9%
  1146/12870 [=======>-------------------------------------------------------------------------------]   9%
  1147/12870 [=======>-------------------------------------------------------------------------------]   9%
  1148/12870 [=======>-------------------------------------------------------------------------------]   9%
  1149/12870 [=======>-------------------------------------------------------------------------------]   9%
  1150/12870 [=======>-------------------------------------------------------------------------------]   9%
  1151/12870 [=======>-------------------------------------------------------------------------------]   9%
  1152/12870 [=======>-------------------------------------------------------------------------------]   9%
  1153/12870 [=======>-------------------------------------------------------------------------------]   9%
  1154/12870 [=======>-------------------------------------------------------------------------------]   9%
  1155/12870 [=======>-------------------------------------------------------------------------------]   9%
  1156/12870 [=======>-------------------------------------------------------------------------------]   9%
  1157/12870 [=======>-------------------------------------------------------------------------------]   9%
  1158/12870 [=======>-------------------------------------------------------------------------------]   9%
  1159/12870 [=======>-------------------------------------------------------------------------------]   9%
  1160/12870 [=======>-------------------------------------------------------------------------------]   9%
  1161/12870 [=======>-------------------------------------------------------------------------------]   9%
  1162/12870 [=======>-------------------------------------------------------------------------------]   9%
  1163/12870 [=======>-------------------------------------------------------------------------------]   9%
  1164/12870 [=======>-------------------------------------------------------------------------------]   9%
  1165/12870 [=======>-------------------------------------------------------------------------------]   9%
  1166/12870 [=======>-------------------------------------------------------------------------------]   9%
  1167/12870 [=======>-------------------------------------------------------------------------------]   9%
  1168/12870 [=======>-------------------------------------------------------------------------------]   9%
  1169/12870 [=======>-------------------------------------------------------------------------------]   9%
  1170/12870 [=======>-------------------------------------------------------------------------------]   9%
  1171/12870 [=======>-------------------------------------------------------------------------------]   9%
  1172/12870 [=======>-------------------------------------------------------------------------------]   9%
  1173/12870 [=======>-------------------------------------------------------------------------------]   9%
  1174/12870 [=======>-------------------------------------------------------------------------------]   9%
  1175/12870 [=======>-------------------------------------------------------------------------------]   9%
  1176/12870 [=======>-------------------------------------------------------------------------------]   9%
  1177/12870 [=======>-------------------------------------------------------------------------------]   9%
  1178/12870 [=======>-------------------------------------------------------------------------------]   9%
  1179/12870 [=======>-------------------------------------------------------------------------------]   9%
  1180/12870 [=======>-------------------------------------------------------------------------------]   9%
  1181/12870 [=======>-------------------------------------------------------------------------------]   9%
  1182/12870 [=======>-------------------------------------------------------------------------------]   9%
  1183/12870 [=======>-------------------------------------------------------------------------------]   9%
  1184/12870 [=======>-------------------------------------------------------------------------------]   9%
  1185/12870 [=======>-------------------------------------------------------------------------------]   9%
  1186/12870 [=======>-------------------------------------------------------------------------------]   9%
  1187/12870 [=======>-------------------------------------------------------------------------------]   9%
  1188/12870 [=======>-------------------------------------------------------------------------------]   9%
  1189/12870 [=======>-------------------------------------------------------------------------------]   9%
  1190/12870 [=======>-------------------------------------------------------------------------------]   9%
  1191/12870 [=======>-------------------------------------------------------------------------------]   9%
  1192/12870 [=======>-------------------------------------------------------------------------------]   9%
  1193/12870 [=======>-------------------------------------------------------------------------------]   9%
  1194/12870 [=======>-------------------------------------------------------------------------------]   9%
  1195/12870 [=======>-------------------------------------------------------------------------------]   9%
  1196/12870 [=======>-------------------------------------------------------------------------------]   9%
  1197/12870 [=======>-------------------------------------------------------------------------------]   9%
  1198/12870 [=======>-------------------------------------------------------------------------------]   9%
  1199/12870 [=======>-------------------------------------------------------------------------------]   9%
  1200/12870 [=======>-------------------------------------------------------------------------------]   9%
  1201/12870 [=======>-------------------------------------------------------------------------------]   9%
  1202/12870 [=======>-------------------------------------------------------------------------------]   9%
  1203/12870 [=======>-------------------------------------------------------------------------------]   9%
  1204/12870 [=======>-------------------------------------------------------------------------------]   9%
  1205/12870 [=======>-------------------------------------------------------------------------------]   9%
  1206/12870 [=======>-------------------------------------------------------------------------------]   9%
  1207/12870 [=======>-------------------------------------------------------------------------------]   9%
  1208/12870 [=======>-------------------------------------------------------------------------------]   9%
  1209/12870 [=======>-------------------------------------------------------------------------------]   9%
  1210/12870 [=======>-------------------------------------------------------------------------------]   9%
  1211/12870 [=======>-------------------------------------------------------------------------------]   9%
  1212/12870 [=======>-------------------------------------------------------------------------------]   9%
  1213/12870 [=======>-------------------------------------------------------------------------------]   9%
  1214/12870 [=======>-------------------------------------------------------------------------------]   9%
  1215/12870 [=======>-------------------------------------------------------------------------------]   9%
  1216/12870 [=======>-------------------------------------------------------------------------------]   9%
  1217/12870 [=======>-------------------------------------------------------------------------------]   9%
  1218/12870 [=======>-------------------------------------------------------------------------------]   9%
  1219/12870 [=======>-------------------------------------------------------------------------------]   9%
  1220/12870 [=======>-------------------------------------------------------------------------------]   9%
  1221/12870 [=======>-------------------------------------------------------------------------------]   9%
  1222/12870 [=======>-------------------------------------------------------------------------------]   9%
  1223/12870 [=======>-------------------------------------------------------------------------------]  10%
  1224/12870 [=======>-------------------------------------------------------------------------------]  10%
  1225/12870 [=======>-------------------------------------------------------------------------------]  10%
  1226/12870 [=======>-------------------------------------------------------------------------------]  10%
  1227/12870 [=======>-------------------------------------------------------------------------------]  10%
  1228/12870 [=======>-------------------------------------------------------------------------------]  10%
  1229/12870 [=======>-------------------------------------------------------------------------------]  10%
  1230/12870 [=======>-------------------------------------------------------------------------------]  10%
  1231/12870 [=======>-------------------------------------------------------------------------------]  10%
  1232/12870 [=======>-------------------------------------------------------------------------------]  10%
  1233/12870 [=======>-------------------------------------------------------------------------------]  10%
  1234/12870 [=======>-------------------------------------------------------------------------------]  10%
  1235/12870 [=======>-------------------------------------------------------------------------------]  10%
  1236/12870 [=======>-------------------------------------------------------------------------------]  10%
  1237/12870 [=======>-------------------------------------------------------------------------------]  10%
  1238/12870 [=======>-------------------------------------------------------------------------------]  10%
  1239/12870 [=======>-------------------------------------------------------------------------------]  10%
  1240/12870 [=======>-------------------------------------------------------------------------------]  10%
  1241/12870 [=======>-------------------------------------------------------------------------------]  10%
  1242/12870 [=======>-------------------------------------------------------------------------------]  10%
  1243/12870 [=======>-------------------------------------------------------------------------------]  10%
  1244/12870 [=======>-------------------------------------------------------------------------------]  10%
  1245/12870 [=======>-------------------------------------------------------------------------------]  10%
  1246/12870 [=======>-------------------------------------------------------------------------------]  10%
  1247/12870 [=======>-------------------------------------------------------------------------------]  10%
  1248/12870 [=======>-------------------------------------------------------------------------------]  10%
  1249/12870 [=======>-------------------------------------------------------------------------------]  10%
  1250/12870 [=======>-------------------------------------------------------------------------------]  10%
  1251/12870 [=======>-------------------------------------------------------------------------------]  10%
  1252/12870 [=======>-------------------------------------------------------------------------------]  10%
  1253/12870 [=======>-------------------------------------------------------------------------------]  10%
  1254/12870 [=======>-------------------------------------------------------------------------------]  10%
  1255/12870 [=======>-------------------------------------------------------------------------------]  10%
  1256/12870 [=======>-------------------------------------------------------------------------------]  10%
  1257/12870 [=======>-------------------------------------------------------------------------------]  10%
  1258/12870 [========>------------------------------------------------------------------------------]  10%
  1259/12870 [========>------------------------------------------------------------------------------]  10%
  1260/12870 [========>------------------------------------------------------------------------------]  10%
  1261/12870 [========>------------------------------------------------------------------------------]  10%
  1262/12870 [========>------------------------------------------------------------------------------]  10%
  1263/12870 [========>------------------------------------------------------------------------------]  10%
  1264/12870 [========>------------------------------------------------------------------------------]  10%
  1265/12870 [========>------------------------------------------------------------------------------]  10%
  1266/12870 [========>------------------------------------------------------------------------------]  10%
  1267/12870 [========>------------------------------------------------------------------------------]  10%
  1268/12870 [========>------------------------------------------------------------------------------]  10%
  1269/12870 [========>------------------------------------------------------------------------------]  10%
  1270/12870 [========>------------------------------------------------------------------------------]  10%
  1271/12870 [========>------------------------------------------------------------------------------]  10%
  1272/12870 [========>------------------------------------------------------------------------------]  10%
  1273/12870 [========>------------------------------------------------------------------------------]  10%
  1274/12870 [========>------------------------------------------------------------------------------]  10%
  1275/12870 [========>------------------------------------------------------------------------------]  10%
  1276/12870 [========>------------------------------------------------------------------------------]  10%
  1277/12870 [========>------------------------------------------------------------------------------]  10%
  1278/12870 [========>------------------------------------------------------------------------------]  10%
  1279/12870 [========>------------------------------------------------------------------------------]  10%
  1280/12870 [========>------------------------------------------------------------------------------]  10%
  1281/12870 [========>------------------------------------------------------------------------------]  10%
  1282/12870 [========>------------------------------------------------------------------------------]  10%
  1283/12870 [========>------------------------------------------------------------------------------]  10%
  1284/12870 [========>------------------------------------------------------------------------------]  10%
  1285/12870 [========>------------------------------------------------------------------------------]  10%
  1286/12870 [========>------------------------------------------------------------------------------]  10%
  1287/12870 [========>------------------------------------------------------------------------------]  10%
  1288/12870 [========>------------------------------------------------------------------------------]  10%
  1289/12870 [========>------------------------------------------------------------------------------]  10%
  1290/12870 [========>------------------------------------------------------------------------------]  10%
  1291/12870 [========>------------------------------------------------------------------------------]  10%
  1292/12870 [========>------------------------------------------------------------------------------]  10%
  1293/12870 [========>------------------------------------------------------------------------------]  10%
  1294/12870 [========>------------------------------------------------------------------------------]  10%
  1295/12870 [========>------------------------------------------------------------------------------]  10%
  1296/12870 [========>------------------------------------------------------------------------------]  10%
  1297/12870 [========>------------------------------------------------------------------------------]  10%
  1298/12870 [========>------------------------------------------------------------------------------]  10%
  1299/12870 [========>------------------------------------------------------------------------------]  10%
  1300/12870 [========>------------------------------------------------------------------------------]  10%
  1301/12870 [========>------------------------------------------------------------------------------]  10%
  1302/12870 [========>------------------------------------------------------------------------------]  10%
  1303/12870 [========>------------------------------------------------------------------------------]  10%
  1304/12870 [========>------------------------------------------------------------------------------]  10%
  1305/12870 [========>------------------------------------------------------------------------------]  10%
  1306/12870 [========>------------------------------------------------------------------------------]  10%
  1307/12870 [========>------------------------------------------------------------------------------]  10%
  1308/12870 [========>------------------------------------------------------------------------------]  10%
  1309/12870 [========>------------------------------------------------------------------------------]  10%
  1310/12870 [========>------------------------------------------------------------------------------]  10%
  1311/12870 [========>------------------------------------------------------------------------------]  10%
  1312/12870 [========>------------------------------------------------------------------------------]  10%
  1313/12870 [========>------------------------------------------------------------------------------]  10%
  1314/12870 [========>------------------------------------------------------------------------------]  10%
  1315/12870 [========>------------------------------------------------------------------------------]  10%
  1316/12870 [========>------------------------------------------------------------------------------]  10%
  1317/12870 [========>------------------------------------------------------------------------------]  10%
  1318/12870 [========>------------------------------------------------------------------------------]  10%
  1319/12870 [========>------------------------------------------------------------------------------]  10%
  1320/12870 [========>------------------------------------------------------------------------------]  10%
  1321/12870 [========>------------------------------------------------------------------------------]  10%
  1322/12870 [========>------------------------------------------------------------------------------]  10%
  1323/12870 [========>------------------------------------------------------------------------------]  10%
  1324/12870 [========>------------------------------------------------------------------------------]  10%
  1325/12870 [========>------------------------------------------------------------------------------]  10%
  1326/12870 [========>------------------------------------------------------------------------------]  10%
  1327/12870 [========>------------------------------------------------------------------------------]  10%
  1328/12870 [========>------------------------------------------------------------------------------]  10%
  1329/12870 [========>------------------------------------------------------------------------------]  10%
  1330/12870 [========>------------------------------------------------------------------------------]  10%
  1331/12870 [========>------------------------------------------------------------------------------]  10%
  1332/12870 [========>------------------------------------------------------------------------------]  10%
  1333/12870 [========>------------------------------------------------------------------------------]  10%
  1334/12870 [========>------------------------------------------------------------------------------]  10%
  1335/12870 [========>------------------------------------------------------------------------------]  10%
  1336/12870 [========>------------------------------------------------------------------------------]  10%
  1337/12870 [========>------------------------------------------------------------------------------]  10%
  1338/12870 [========>------------------------------------------------------------------------------]  10%
  1339/12870 [========>------------------------------------------------------------------------------]  10%
  1340/12870 [========>------------------------------------------------------------------------------]  10%
  1341/12870 [========>------------------------------------------------------------------------------]  10%
  1342/12870 [========>------------------------------------------------------------------------------]  10%
  1343/12870 [========>------------------------------------------------------------------------------]  10%
  1344/12870 [========>------------------------------------------------------------------------------]  10%
  1345/12870 [========>------------------------------------------------------------------------------]  10%
  1346/12870 [========>------------------------------------------------------------------------------]  10%
  1347/12870 [========>------------------------------------------------------------------------------]  10%
  1348/12870 [========>------------------------------------------------------------------------------]  10%
  1349/12870 [========>------------------------------------------------------------------------------]  10%
  1350/12870 [========>------------------------------------------------------------------------------]  10%
  1351/12870 [========>------------------------------------------------------------------------------]  10%
  1352/12870 [========>------------------------------------------------------------------------------]  11%
  1353/12870 [========>------------------------------------------------------------------------------]  11%
  1354/12870 [========>------------------------------------------------------------------------------]  11%
  1355/12870 [========>------------------------------------------------------------------------------]  11%
  1356/12870 [========>------------------------------------------------------------------------------]  11%
  1357/12870 [========>------------------------------------------------------------------------------]  11%
  1358/12870 [========>------------------------------------------------------------------------------]  11%
  1359/12870 [========>------------------------------------------------------------------------------]  11%
  1360/12870 [========>------------------------------------------------------------------------------]  11%
  1361/12870 [========>------------------------------------------------------------------------------]  11%
  1362/12870 [========>------------------------------------------------------------------------------]  11%
  1363/12870 [========>------------------------------------------------------------------------------]  11%
  1364/12870 [========>------------------------------------------------------------------------------]  11%
  1365/12870 [========>------------------------------------------------------------------------------]  11%
  1366/12870 [========>------------------------------------------------------------------------------]  11%
  1367/12870 [========>------------------------------------------------------------------------------]  11%
  1368/12870 [========>------------------------------------------------------------------------------]  11%
  1369/12870 [========>------------------------------------------------------------------------------]  11%
  1370/12870 [========>------------------------------------------------------------------------------]  11%
  1371/12870 [========>------------------------------------------------------------------------------]  11%
  1372/12870 [========>------------------------------------------------------------------------------]  11%
  1373/12870 [========>------------------------------------------------------------------------------]  11%
  1374/12870 [========>------------------------------------------------------------------------------]  11%
  1375/12870 [========>------------------------------------------------------------------------------]  11%
  1376/12870 [========>------------------------------------------------------------------------------]  11%
  1377/12870 [========>------------------------------------------------------------------------------]  11%
  1378/12870 [========>------------------------------------------------------------------------------]  11%
  1379/12870 [========>------------------------------------------------------------------------------]  11%
  1380/12870 [========>------------------------------------------------------------------------------]  11%
  1381/12870 [========>------------------------------------------------------------------------------]  11%
  1382/12870 [========>------------------------------------------------------------------------------]  11%
  1383/12870 [========>------------------------------------------------------------------------------]  11%
  1384/12870 [========>------------------------------------------------------------------------------]  11%
  1385/12870 [========>------------------------------------------------------------------------------]  11%
  1386/12870 [========>------------------------------------------------------------------------------]  11%
  1387/12870 [========>------------------------------------------------------------------------------]  11%
  1388/12870 [========>------------------------------------------------------------------------------]  11%
  1389/12870 [========>------------------------------------------------------------------------------]  11%
  1390/12870 [========>------------------------------------------------------------------------------]  11%
  1391/12870 [========>------------------------------------------------------------------------------]  11%
  1392/12870 [========>------------------------------------------------------------------------------]  11%
  1393/12870 [========>------------------------------------------------------------------------------]  11%
  1394/12870 [========>------------------------------------------------------------------------------]  11%
  1395/12870 [========>------------------------------------------------------------------------------]  11%
  1396/12870 [========>------------------------------------------------------------------------------]  11%
  1397/12870 [========>------------------------------------------------------------------------------]  11%
  1398/12870 [========>------------------------------------------------------------------------------]  11%
  1399/12870 [========>------------------------------------------------------------------------------]  11%
  1400/12870 [========>------------------------------------------------------------------------------]  11%
  1401/12870 [========>------------------------------------------------------------------------------]  11%
  1402/12870 [========>------------------------------------------------------------------------------]  11%
  1403/12870 [========>------------------------------------------------------------------------------]  11%
  1404/12870 [========>------------------------------------------------------------------------------]  11%
  1405/12870 [========>------------------------------------------------------------------------------]  11%
  1406/12870 [=========>-----------------------------------------------------------------------------]  11%
  1407/12870 [=========>-----------------------------------------------------------------------------]  11%
  1408/12870 [=========>-----------------------------------------------------------------------------]  11%
  1409/12870 [=========>-----------------------------------------------------------------------------]  11%
  1410/12870 [=========>-----------------------------------------------------------------------------]  11%
  1411/12870 [=========>-----------------------------------------------------------------------------]  11%
  1412/12870 [=========>-----------------------------------------------------------------------------]  11%
  1413/12870 [=========>-----------------------------------------------------------------------------]  11%
  1414/12870 [=========>-----------------------------------------------------------------------------]  11%
  1415/12870 [=========>-----------------------------------------------------------------------------]  11%
  1416/12870 [=========>-----------------------------------------------------------------------------]  11%
  1417/12870 [=========>-----------------------------------------------------------------------------]  11%
  1418/12870 [=========>-----------------------------------------------------------------------------]  11%
  1419/12870 [=========>-----------------------------------------------------------------------------]  11%
  1420/12870 [=========>-----------------------------------------------------------------------------]  11%
  1421/12870 [=========>-----------------------------------------------------------------------------]  11%
  1422/12870 [=========>-----------------------------------------------------------------------------]  11%
  1423/12870 [=========>-----------------------------------------------------------------------------]  11%
  1424/12870 [=========>-----------------------------------------------------------------------------]  11%
  1425/12870 [=========>-----------------------------------------------------------------------------]  11%
  1426/12870 [=========>-----------------------------------------------------------------------------]  11%
  1427/12870 [=========>-----------------------------------------------------------------------------]  11%
  1428/12870 [=========>-----------------------------------------------------------------------------]  11%
  1429/12870 [=========>-----------------------------------------------------------------------------]  11%
  1430/12870 [=========>-----------------------------------------------------------------------------]  11%
  1431/12870 [=========>-----------------------------------------------------------------------------]  11%
  1432/12870 [=========>-----------------------------------------------------------------------------]  11%
  1433/12870 [=========>-----------------------------------------------------------------------------]  11%
  1434/12870 [=========>-----------------------------------------------------------------------------]  11%
  1435/12870 [=========>-----------------------------------------------------------------------------]  11%
  1436/12870 [=========>-----------------------------------------------------------------------------]  11%
  1437/12870 [=========>-----------------------------------------------------------------------------]  11%
  1438/12870 [=========>-----------------------------------------------------------------------------]  11%
  1439/12870 [=========>-----------------------------------------------------------------------------]  11%
  1440/12870 [=========>-----------------------------------------------------------------------------]  11%
  1441/12870 [=========>-----------------------------------------------------------------------------]  11%
  1442/12870 [=========>-----------------------------------------------------------------------------]  11%
  1443/12870 [=========>-----------------------------------------------------------------------------]  11%
  1444/12870 [=========>-----------------------------------------------------------------------------]  11%
  1445/12870 [=========>-----------------------------------------------------------------------------]  11%
  1446/12870 [=========>-----------------------------------------------------------------------------]  11%
  1447/12870 [=========>-----------------------------------------------------------------------------]  11%
  1448/12870 [=========>-----------------------------------------------------------------------------]  11%
  1449/12870 [=========>-----------------------------------------------------------------------------]  11%
  1450/12870 [=========>-----------------------------------------------------------------------------]  11%
  1451/12870 [=========>-----------------------------------------------------------------------------]  11%
  1452/12870 [=========>-----------------------------------------------------------------------------]  11%
  1453/12870 [=========>-----------------------------------------------------------------------------]  11%
  1454/12870 [=========>-----------------------------------------------------------------------------]  11%
  1455/12870 [=========>-----------------------------------------------------------------------------]  11%
  1456/12870 [=========>-----------------------------------------------------------------------------]  11%
  1457/12870 [=========>-----------------------------------------------------------------------------]  11%
  1458/12870 [=========>-----------------------------------------------------------------------------]  11%
  1459/12870 [=========>-----------------------------------------------------------------------------]  11%
  1460/12870 [=========>-----------------------------------------------------------------------------]  11%
  1461/12870 [=========>-----------------------------------------------------------------------------]  11%
  1462/12870 [=========>-----------------------------------------------------------------------------]  11%
  1463/12870 [=========>-----------------------------------------------------------------------------]  11%
  1464/12870 [=========>-----------------------------------------------------------------------------]  11%
  1465/12870 [=========>-----------------------------------------------------------------------------]  11%
  1466/12870 [=========>-----------------------------------------------------------------------------]  11%
  1467/12870 [=========>-----------------------------------------------------------------------------]  11%
  1468/12870 [=========>-----------------------------------------------------------------------------]  11%
  1469/12870 [=========>-----------------------------------------------------------------------------]  11%
  1470/12870 [=========>-----------------------------------------------------------------------------]  11%
  1471/12870 [=========>-----------------------------------------------------------------------------]  11%
  1472/12870 [=========>-----------------------------------------------------------------------------]  11%
  1473/12870 [=========>-----------------------------------------------------------------------------]  11%
  1474/12870 [=========>-----------------------------------------------------------------------------]  11%
  1475/12870 [=========>-----------------------------------------------------------------------------]  11%
  1476/12870 [=========>-----------------------------------------------------------------------------]  11%
  1477/12870 [=========>-----------------------------------------------------------------------------]  11%
  1478/12870 [=========>-----------------------------------------------------------------------------]  11%
  1479/12870 [=========>-----------------------------------------------------------------------------]  11%
  1480/12870 [=========>-----------------------------------------------------------------------------]  11%
  1481/12870 [=========>-----------------------------------------------------------------------------]  12%
  1482/12870 [=========>-----------------------------------------------------------------------------]  12%
  1483/12870 [=========>-----------------------------------------------------------------------------]  12%
  1484/12870 [=========>-----------------------------------------------------------------------------]  12%
  1485/12870 [=========>-----------------------------------------------------------------------------]  12%
  1486/12870 [=========>-----------------------------------------------------------------------------]  12%
  1487/12870 [=========>-----------------------------------------------------------------------------]  12%
  1488/12870 [=========>-----------------------------------------------------------------------------]  12%
  1489/12870 [=========>-----------------------------------------------------------------------------]  12%
  1490/12870 [=========>-----------------------------------------------------------------------------]  12%
  1491/12870 [=========>-----------------------------------------------------------------------------]  12%
  1492/12870 [=========>-----------------------------------------------------------------------------]  12%
  1493/12870 [=========>-----------------------------------------------------------------------------]  12%
  1494/12870 [=========>-----------------------------------------------------------------------------]  12%
  1495/12870 [=========>-----------------------------------------------------------------------------]  12%
  1496/12870 [=========>-----------------------------------------------------------------------------]  12%
  1497/12870 [=========>-----------------------------------------------------------------------------]  12%
  1498/12870 [=========>-----------------------------------------------------------------------------]  12%
  1499/12870 [=========>-----------------------------------------------------------------------------]  12%
  1500/12870 [=========>-----------------------------------------------------------------------------]  12%
  1501/12870 [=========>-----------------------------------------------------------------------------]  12%
  1502/12870 [=========>-----------------------------------------------------------------------------]  12%
  1503/12870 [=========>-----------------------------------------------------------------------------]  12%
  1504/12870 [=========>-----------------------------------------------------------------------------]  12%
  1505/12870 [=========>-----------------------------------------------------------------------------]  12%
  1506/12870 [=========>-----------------------------------------------------------------------------]  12%
  1507/12870 [=========>-----------------------------------------------------------------------------]  12%
  1508/12870 [=========>-----------------------------------------------------------------------------]  12%
  1509/12870 [=========>-----------------------------------------------------------------------------]  12%
  1510/12870 [=========>-----------------------------------------------------------------------------]  12%
  1511/12870 [=========>-----------------------------------------------------------------------------]  12%
  1512/12870 [=========>-----------------------------------------------------------------------------]  12%
  1513/12870 [=========>-----------------------------------------------------------------------------]  12%
  1514/12870 [=========>-----------------------------------------------------------------------------]  12%
  1515/12870 [=========>-----------------------------------------------------------------------------]  12%
  1516/12870 [=========>-----------------------------------------------------------------------------]  12%
  1517/12870 [=========>-----------------------------------------------------------------------------]  12%
  1518/12870 [=========>-----------------------------------------------------------------------------]  12%
  1519/12870 [=========>-----------------------------------------------------------------------------]  12%
  1520/12870 [=========>-----------------------------------------------------------------------------]  12%
  1521/12870 [=========>-----------------------------------------------------------------------------]  12%
  1522/12870 [=========>-----------------------------------------------------------------------------]  12%
  1523/12870 [=========>-----------------------------------------------------------------------------]  12%
  1524/12870 [=========>-----------------------------------------------------------------------------]  12%
  1525/12870 [=========>-----------------------------------------------------------------------------]  12%
  1526/12870 [=========>-----------------------------------------------------------------------------]  12%
  1527/12870 [=========>-----------------------------------------------------------------------------]  12%
  1528/12870 [=========>-----------------------------------------------------------------------------]  12%
  1529/12870 [=========>-----------------------------------------------------------------------------]  12%
  1530/12870 [=========>-----------------------------------------------------------------------------]  12%
  1531/12870 [=========>-----------------------------------------------------------------------------]  12%
  1532/12870 [=========>-----------------------------------------------------------------------------]  12%
  1533/12870 [=========>-----------------------------------------------------------------------------]  12%
  1534/12870 [=========>-----------------------------------------------------------------------------]  12%
  1535/12870 [=========>-----------------------------------------------------------------------------]  12%
  1536/12870 [=========>-----------------------------------------------------------------------------]  12%
  1537/12870 [=========>-----------------------------------------------------------------------------]  12%
  1538/12870 [=========>-----------------------------------------------------------------------------]  12%
  1539/12870 [=========>-----------------------------------------------------------------------------]  12%
  1540/12870 [=========>-----------------------------------------------------------------------------]  12%
  1541/12870 [=========>-----------------------------------------------------------------------------]  12%
  1542/12870 [=========>-----------------------------------------------------------------------------]  12%
  1543/12870 [=========>-----------------------------------------------------------------------------]  12%
  1544/12870 [=========>-----------------------------------------------------------------------------]  12%
  1545/12870 [=========>-----------------------------------------------------------------------------]  12%
  1546/12870 [=========>-----------------------------------------------------------------------------]  12%
  1547/12870 [=========>-----------------------------------------------------------------------------]  12%
  1548/12870 [=========>-----------------------------------------------------------------------------]  12%
  1549/12870 [=========>-----------------------------------------------------------------------------]  12%
  1550/12870 [=========>-----------------------------------------------------------------------------]  12%
  1551/12870 [=========>-----------------------------------------------------------------------------]  12%
  1552/12870 [=========>-----------------------------------------------------------------------------]  12%
  1553/12870 [=========>-----------------------------------------------------------------------------]  12%
  1554/12870 [==========>----------------------------------------------------------------------------]  12%
  1555/12870 [==========>----------------------------------------------------------------------------]  12%
  1556/12870 [==========>----------------------------------------------------------------------------]  12%
  1557/12870 [==========>----------------------------------------------------------------------------]  12%
  1558/12870 [==========>----------------------------------------------------------------------------]  12%
  1559/12870 [==========>----------------------------------------------------------------------------]  12%
  1560/12870 [==========>----------------------------------------------------------------------------]  12%
  1561/12870 [==========>----------------------------------------------------------------------------]  12%
  1562/12870 [==========>----------------------------------------------------------------------------]  12%
  1563/12870 [==========>----------------------------------------------------------------------------]  12%
  1564/12870 [==========>----------------------------------------------------------------------------]  12%
  1565/12870 [==========>----------------------------------------------------------------------------]  12%
  1566/12870 [==========>----------------------------------------------------------------------------]  12%
  1567/12870 [==========>----------------------------------------------------------------------------]  12%
  1568/12870 [==========>----------------------------------------------------------------------------]  12%
  1569/12870 [==========>----------------------------------------------------------------------------]  12%
  1570/12870 [==========>----------------------------------------------------------------------------]  12%
  1571/12870 [==========>----------------------------------------------------------------------------]  12%
  1572/12870 [==========>----------------------------------------------------------------------------]  12%
  1573/12870 [==========>----------------------------------------------------------------------------]  12%
  1574/12870 [==========>----------------------------------------------------------------------------]  12%
  1575/12870 [==========>----------------------------------------------------------------------------]  12%
  1576/12870 [==========>----------------------------------------------------------------------------]  12%
  1577/12870 [==========>----------------------------------------------------------------------------]  12%
  1578/12870 [==========>----------------------------------------------------------------------------]  12%
  1579/12870 [==========>----------------------------------------------------------------------------]  12%
  1580/12870 [==========>----------------------------------------------------------------------------]  12%
  1581/12870 [==========>----------------------------------------------------------------------------]  12%
  1582/12870 [==========>----------------------------------------------------------------------------]  12%
  1583/12870 [==========>----------------------------------------------------------------------------]  12%
  1584/12870 [==========>----------------------------------------------------------------------------]  12%
  1585/12870 [==========>----------------------------------------------------------------------------]  12%
  1586/12870 [==========>----------------------------------------------------------------------------]  12%
  1587/12870 [==========>----------------------------------------------------------------------------]  12%
  1588/12870 [==========>----------------------------------------------------------------------------]  12%
  1589/12870 [==========>----------------------------------------------------------------------------]  12%
  1590/12870 [==========>----------------------------------------------------------------------------]  12%
  1591/12870 [==========>----------------------------------------------------------------------------]  12%
  1592/12870 [==========>----------------------------------------------------------------------------]  12%
  1593/12870 [==========>----------------------------------------------------------------------------]  12%
  1594/12870 [==========>----------------------------------------------------------------------------]  12%
  1595/12870 [==========>----------------------------------------------------------------------------]  12%
  1596/12870 [==========>----------------------------------------------------------------------------]  12%
  1597/12870 [==========>----------------------------------------------------------------------------]  12%
  1598/12870 [==========>----------------------------------------------------------------------------]  12%
  1599/12870 [==========>----------------------------------------------------------------------------]  12%
  1600/12870 [==========>----------------------------------------------------------------------------]  12%
  1601/12870 [==========>----------------------------------------------------------------------------]  12%
  1602/12870 [==========>----------------------------------------------------------------------------]  12%
  1603/12870 [==========>----------------------------------------------------------------------------]  12%
  1604/12870 [==========>----------------------------------------------------------------------------]  12%
  1605/12870 [==========>----------------------------------------------------------------------------]  12%
  1606/12870 [==========>----------------------------------------------------------------------------]  12%
  1607/12870 [==========>----------------------------------------------------------------------------]  12%
  1608/12870 [==========>----------------------------------------------------------------------------]  12%
  1609/12870 [==========>----------------------------------------------------------------------------]  13%
  1610/12870 [==========>----------------------------------------------------------------------------]  13%
  1611/12870 [==========>----------------------------------------------------------------------------]  13%
  1612/12870 [==========>----------------------------------------------------------------------------]  13%
  1613/12870 [==========>----------------------------------------------------------------------------]  13%
  1614/12870 [==========>----------------------------------------------------------------------------]  13%
  1615/12870 [==========>----------------------------------------------------------------------------]  13%
  1616/12870 [==========>----------------------------------------------------------------------------]  13%
  1617/12870 [==========>----------------------------------------------------------------------------]  13%
  1618/12870 [==========>----------------------------------------------------------------------------]  13%
  1619/12870 [==========>----------------------------------------------------------------------------]  13%
  1620/12870 [==========>----------------------------------------------------------------------------]  13%
  1621/12870 [==========>----------------------------------------------------------------------------]  13%
  1622/12870 [==========>----------------------------------------------------------------------------]  13%
  1623/12870 [==========>----------------------------------------------------------------------------]  13%
  1624/12870 [==========>----------------------------------------------------------------------------]  13%
  1625/12870 [==========>----------------------------------------------------------------------------]  13%
  1626/12870 [==========>----------------------------------------------------------------------------]  13%
  1627/12870 [==========>----------------------------------------------------------------------------]  13%
  1628/12870 [==========>----------------------------------------------------------------------------]  13%
  1629/12870 [==========>----------------------------------------------------------------------------]  13%
  1630/12870 [==========>----------------------------------------------------------------------------]  13%
  1631/12870 [==========>----------------------------------------------------------------------------]  13%
  1632/12870 [==========>----------------------------------------------------------------------------]  13%
  1633/12870 [==========>----------------------------------------------------------------------------]  13%
  1634/12870 [==========>----------------------------------------------------------------------------]  13%
  1635/12870 [==========>----------------------------------------------------------------------------]  13%
  1636/12870 [==========>----------------------------------------------------------------------------]  13%
  1637/12870 [==========>----------------------------------------------------------------------------]  13%
  1638/12870 [==========>----------------------------------------------------------------------------]  13%
  1639/12870 [==========>----------------------------------------------------------------------------]  13%
  1640/12870 [==========>----------------------------------------------------------------------------]  13%
  1641/12870 [==========>----------------------------------------------------------------------------]  13%
  1642/12870 [==========>----------------------------------------------------------------------------]  13%
  1643/12870 [==========>----------------------------------------------------------------------------]  13%
  1644/12870 [==========>----------------------------------------------------------------------------]  13%
  1645/12870 [==========>----------------------------------------------------------------------------]  13%
  1646/12870 [==========>----------------------------------------------------------------------------]  13%
  1647/12870 [==========>----------------------------------------------------------------------------]  13%
  1648/12870 [==========>----------------------------------------------------------------------------]  13%
  1649/12870 [==========>----------------------------------------------------------------------------]  13%
  1650/12870 [==========>----------------------------------------------------------------------------]  13%
  1651/12870 [==========>----------------------------------------------------------------------------]  13%
  1652/12870 [==========>----------------------------------------------------------------------------]  13%
  1653/12870 [==========>----------------------------------------------------------------------------]  13%
  1654/12870 [==========>----------------------------------------------------------------------------]  13%
  1655/12870 [==========>----------------------------------------------------------------------------]  13%
  1656/12870 [==========>----------------------------------------------------------------------------]  13%
  1657/12870 [==========>----------------------------------------------------------------------------]  13%
  1658/12870 [==========>----------------------------------------------------------------------------]  13%
  1659/12870 [==========>----------------------------------------------------------------------------]  13%
  1660/12870 [==========>----------------------------------------------------------------------------]  13%
  1661/12870 [==========>----------------------------------------------------------------------------]  13%
  1662/12870 [==========>----------------------------------------------------------------------------]  13%
  1663/12870 [==========>----------------------------------------------------------------------------]  13%
  1664/12870 [==========>----------------------------------------------------------------------------]  13%
  1665/12870 [==========>----------------------------------------------------------------------------]  13%
  1666/12870 [==========>----------------------------------------------------------------------------]  13%
  1667/12870 [==========>----------------------------------------------------------------------------]  13%
  1668/12870 [==========>----------------------------------------------------------------------------]  13%
  1669/12870 [==========>----------------------------------------------------------------------------]  13%
  1670/12870 [==========>----------------------------------------------------------------------------]  13%
  1671/12870 [==========>----------------------------------------------------------------------------]  13%
  1672/12870 [==========>----------------------------------------------------------------------------]  13%
  1673/12870 [==========>----------------------------------------------------------------------------]  13%
  1674/12870 [==========>----------------------------------------------------------------------------]  13%
  1675/12870 [==========>----------------------------------------------------------------------------]  13%
  1676/12870 [==========>----------------------------------------------------------------------------]  13%
  1677/12870 [==========>----------------------------------------------------------------------------]  13%
  1678/12870 [==========>----------------------------------------------------------------------------]  13%
  1679/12870 [==========>----------------------------------------------------------------------------]  13%
  1680/12870 [==========>----------------------------------------------------------------------------]  13%
  1681/12870 [==========>----------------------------------------------------------------------------]  13%
  1682/12870 [==========>----------------------------------------------------------------------------]  13%
  1683/12870 [==========>----------------------------------------------------------------------------]  13%
  1684/12870 [==========>----------------------------------------------------------------------------]  13%
  1685/12870 [==========>----------------------------------------------------------------------------]  13%
  1686/12870 [==========>----------------------------------------------------------------------------]  13%
  1687/12870 [==========>----------------------------------------------------------------------------]  13%
  1688/12870 [==========>----------------------------------------------------------------------------]  13%
  1689/12870 [==========>----------------------------------------------------------------------------]  13%
  1690/12870 [==========>----------------------------------------------------------------------------]  13%
  1691/12870 [==========>----------------------------------------------------------------------------]  13%
  1692/12870 [==========>----------------------------------------------------------------------------]  13%
  1693/12870 [==========>----------------------------------------------------------------------------]  13%
  1694/12870 [==========>----------------------------------------------------------------------------]  13%
  1695/12870 [==========>----------------------------------------------------------------------------]  13%
  1696/12870 [==========>----------------------------------------------------------------------------]  13%
  1697/12870 [==========>----------------------------------------------------------------------------]  13%
  1698/12870 [==========>----------------------------------------------------------------------------]  13%
  1699/12870 [==========>----------------------------------------------------------------------------]  13%
  1700/12870 [==========>----------------------------------------------------------------------------]  13%
  1701/12870 [==========>----------------------------------------------------------------------------]  13%
  1702/12870 [===========>---------------------------------------------------------------------------]  13%
  1703/12870 [===========>---------------------------------------------------------------------------]  13%
  1704/12870 [===========>---------------------------------------------------------------------------]  13%
  1705/12870 [===========>---------------------------------------------------------------------------]  13%
  1706/12870 [===========>---------------------------------------------------------------------------]  13%
  1707/12870 [===========>---------------------------------------------------------------------------]  13%
  1708/12870 [===========>---------------------------------------------------------------------------]  13%
  1709/12870 [===========>---------------------------------------------------------------------------]  13%
  1710/12870 [===========>---------------------------------------------------------------------------]  13%
  1711/12870 [===========>---------------------------------------------------------------------------]  13%
  1712/12870 [===========>---------------------------------------------------------------------------]  13%
  1713/12870 [===========>---------------------------------------------------------------------------]  13%
  1714/12870 [===========>---------------------------------------------------------------------------]  13%
  1715/12870 [===========>---------------------------------------------------------------------------]  13%
  1716/12870 [===========>---------------------------------------------------------------------------]  13%
  1717/12870 [===========>---------------------------------------------------------------------------]  13%
  1718/12870 [===========>---------------------------------------------------------------------------]  13%
  1719/12870 [===========>---------------------------------------------------------------------------]  13%
  1720/12870 [===========>---------------------------------------------------------------------------]  13%
  1721/12870 [===========>---------------------------------------------------------------------------]  13%
  1722/12870 [===========>---------------------------------------------------------------------------]  13%
  1723/12870 [===========>---------------------------------------------------------------------------]  13%
  1724/12870 [===========>---------------------------------------------------------------------------]  13%
  1725/12870 [===========>---------------------------------------------------------------------------]  13%
  1726/12870 [===========>---------------------------------------------------------------------------]  13%
  1727/12870 [===========>---------------------------------------------------------------------------]  13%
  1728/12870 [===========>---------------------------------------------------------------------------]  13%
  1729/12870 [===========>---------------------------------------------------------------------------]  13%
  1730/12870 [===========>---------------------------------------------------------------------------]  13%
  1731/12870 [===========>---------------------------------------------------------------------------]  13%
  1732/12870 [===========>---------------------------------------------------------------------------]  13%
  1733/12870 [===========>---------------------------------------------------------------------------]  13%
  1734/12870 [===========>---------------------------------------------------------------------------]  13%
  1735/12870 [===========>---------------------------------------------------------------------------]  13%
  1736/12870 [===========>---------------------------------------------------------------------------]  13%
  1737/12870 [===========>---------------------------------------------------------------------------]  13%
  1738/12870 [===========>---------------------------------------------------------------------------]  14%
  1739/12870 [===========>---------------------------------------------------------------------------]  14%
  1740/12870 [===========>---------------------------------------------------------------------------]  14%
  1741/12870 [===========>---------------------------------------------------------------------------]  14%
  1742/12870 [===========>---------------------------------------------------------------------------]  14%
  1743/12870 [===========>---------------------------------------------------------------------------]  14%
  1744/12870 [===========>---------------------------------------------------------------------------]  14%
  1745/12870 [===========>---------------------------------------------------------------------------]  14%
  1746/12870 [===========>---------------------------------------------------------------------------]  14%
  1747/12870 [===========>---------------------------------------------------------------------------]  14%
  1748/12870 [===========>---------------------------------------------------------------------------]  14%
  1749/12870 [===========>---------------------------------------------------------------------------]  14%
  1750/12870 [===========>---------------------------------------------------------------------------]  14%
  1751/12870 [===========>---------------------------------------------------------------------------]  14%
  1752/12870 [===========>---------------------------------------------------------------------------]  14%
  1753/12870 [===========>---------------------------------------------------------------------------]  14%
  1754/12870 [===========>---------------------------------------------------------------------------]  14%
  1755/12870 [===========>---------------------------------------------------------------------------]  14%
  1756/12870 [===========>---------------------------------------------------------------------------]  14%
  1757/12870 [===========>---------------------------------------------------------------------------]  14%
  1758/12870 [===========>---------------------------------------------------------------------------]  14%
  1759/12870 [===========>---------------------------------------------------------------------------]  14%
  1760/12870 [===========>---------------------------------------------------------------------------]  14%
  1761/12870 [===========>---------------------------------------------------------------------------]  14%
  1762/12870 [===========>---------------------------------------------------------------------------]  14%
  1763/12870 [===========>---------------------------------------------------------------------------]  14%
  1764/12870 [===========>---------------------------------------------------------------------------]  14%
  1765/12870 [===========>---------------------------------------------------------------------------]  14%
  1766/12870 [===========>---------------------------------------------------------------------------]  14%
  1767/12870 [===========>---------------------------------------------------------------------------]  14%
  1768/12870 [===========>---------------------------------------------------------------------------]  14%
  1769/12870 [===========>---------------------------------------------------------------------------]  14%
  1770/12870 [===========>---------------------------------------------------------------------------]  14%
  1771/12870 [===========>---------------------------------------------------------------------------]  14%
  1772/12870 [===========>---------------------------------------------------------------------------]  14%
  1773/12870 [===========>---------------------------------------------------------------------------]  14%
  1774/12870 [===========>---------------------------------------------------------------------------]  14%
  1775/12870 [===========>---------------------------------------------------------------------------]  14%
  1776/12870 [===========>---------------------------------------------------------------------------]  14%
  1777/12870 [===========>---------------------------------------------------------------------------]  14%
  1778/12870 [===========>---------------------------------------------------------------------------]  14%
  1779/12870 [===========>---------------------------------------------------------------------------]  14%
  1780/12870 [===========>---------------------------------------------------------------------------]  14%
  1781/12870 [===========>---------------------------------------------------------------------------]  14%
  1782/12870 [===========>---------------------------------------------------------------------------]  14%
  1783/12870 [===========>---------------------------------------------------------------------------]  14%
  1784/12870 [===========>---------------------------------------------------------------------------]  14%
  1785/12870 [===========>---------------------------------------------------------------------------]  14%
  1786/12870 [===========>---------------------------------------------------------------------------]  14%
  1787/12870 [===========>---------------------------------------------------------------------------]  14%
  1788/12870 [===========>---------------------------------------------------------------------------]  14%
  1789/12870 [===========>---------------------------------------------------------------------------]  14%
  1790/12870 [===========>---------------------------------------------------------------------------]  14%
  1791/12870 [===========>---------------------------------------------------------------------------]  14%
  1792/12870 [===========>---------------------------------------------------------------------------]  14%
  1793/12870 [===========>---------------------------------------------------------------------------]  14%
  1794/12870 [===========>---------------------------------------------------------------------------]  14%
  1795/12870 [===========>---------------------------------------------------------------------------]  14%
  1796/12870 [===========>---------------------------------------------------------------------------]  14%
  1797/12870 [===========>---------------------------------------------------------------------------]  14%
  1798/12870 [===========>---------------------------------------------------------------------------]  14%
  1799/12870 [===========>---------------------------------------------------------------------------]  14%
  1800/12870 [===========>---------------------------------------------------------------------------]  14%
  1801/12870 [===========>---------------------------------------------------------------------------]  14%
  1802/12870 [===========>---------------------------------------------------------------------------]  14%
  1803/12870 [===========>---------------------------------------------------------------------------]  14%
  1804/12870 [===========>---------------------------------------------------------------------------]  14%
  1805/12870 [===========>---------------------------------------------------------------------------]  14%
  1806/12870 [===========>---------------------------------------------------------------------------]  14%
  1807/12870 [===========>---------------------------------------------------------------------------]  14%
  1808/12870 [===========>---------------------------------------------------------------------------]  14%
  1809/12870 [===========>---------------------------------------------------------------------------]  14%
  1810/12870 [===========>---------------------------------------------------------------------------]  14%
  1811/12870 [===========>---------------------------------------------------------------------------]  14%
  1812/12870 [===========>---------------------------------------------------------------------------]  14%
  1813/12870 [===========>---------------------------------------------------------------------------]  14%
  1814/12870 [===========>---------------------------------------------------------------------------]  14%
  1815/12870 [===========>---------------------------------------------------------------------------]  14%
  1816/12870 [===========>---------------------------------------------------------------------------]  14%
  1817/12870 [===========>---------------------------------------------------------------------------]  14%
  1818/12870 [===========>---------------------------------------------------------------------------]  14%
  1819/12870 [===========>---------------------------------------------------------------------------]  14%
  1820/12870 [===========>---------------------------------------------------------------------------]  14%
  1821/12870 [===========>---------------------------------------------------------------------------]  14%
  1822/12870 [===========>---------------------------------------------------------------------------]  14%
  1823/12870 [===========>---------------------------------------------------------------------------]  14%
  1824/12870 [===========>---------------------------------------------------------------------------]  14%
  1825/12870 [===========>---------------------------------------------------------------------------]  14%
  1826/12870 [===========>---------------------------------------------------------------------------]  14%
  1827/12870 [===========>---------------------------------------------------------------------------]  14%
  1828/12870 [===========>---------------------------------------------------------------------------]  14%
  1829/12870 [===========>---------------------------------------------------------------------------]  14%
  1830/12870 [===========>---------------------------------------------------------------------------]  14%
  1831/12870 [===========>---------------------------------------------------------------------------]  14%
  1832/12870 [===========>---------------------------------------------------------------------------]  14%
  1833/12870 [===========>---------------------------------------------------------------------------]  14%
  1834/12870 [===========>---------------------------------------------------------------------------]  14%
  1835/12870 [===========>---------------------------------------------------------------------------]  14%
  1836/12870 [===========>---------------------------------------------------------------------------]  14%
  1837/12870 [===========>---------------------------------------------------------------------------]  14%
  1838/12870 [===========>---------------------------------------------------------------------------]  14%
  1839/12870 [===========>---------------------------------------------------------------------------]  14%
  1840/12870 [===========>---------------------------------------------------------------------------]  14%
  1841/12870 [===========>---------------------------------------------------------------------------]  14%
  1842/12870 [===========>---------------------------------------------------------------------------]  14%
  1843/12870 [===========>---------------------------------------------------------------------------]  14%
  1844/12870 [===========>---------------------------------------------------------------------------]  14%
  1845/12870 [===========>---------------------------------------------------------------------------]  14%
  1846/12870 [===========>---------------------------------------------------------------------------]  14%
  1847/12870 [===========>---------------------------------------------------------------------------]  14%
  1848/12870 [===========>---------------------------------------------------------------------------]  14%
  1849/12870 [===========>---------------------------------------------------------------------------]  14%
  1850/12870 [============>--------------------------------------------------------------------------]  14%
  1851/12870 [============>--------------------------------------------------------------------------]  14%
  1852/12870 [============>--------------------------------------------------------------------------]  14%
  1853/12870 [============>--------------------------------------------------------------------------]  14%
  1854/12870 [============>--------------------------------------------------------------------------]  14%
  1855/12870 [============>--------------------------------------------------------------------------]  14%
  1856/12870 [============>--------------------------------------------------------------------------]  14%
  1857/12870 [============>--------------------------------------------------------------------------]  14%
  1858/12870 [============>--------------------------------------------------------------------------]  14%
  1859/12870 [============>--------------------------------------------------------------------------]  14%
  1860/12870 [============>--------------------------------------------------------------------------]  14%
  1861/12870 [============>--------------------------------------------------------------------------]  14%
  1862/12870 [============>--------------------------------------------------------------------------]  14%
  1863/12870 [============>--------------------------------------------------------------------------]  14%
  1864/12870 [============>--------------------------------------------------------------------------]  14%
  1865/12870 [============>--------------------------------------------------------------------------]  14%
  1866/12870 [============>--------------------------------------------------------------------------]  14%
  1867/12870 [============>--------------------------------------------------------------------------]  15%
  1868/12870 [============>--------------------------------------------------------------------------]  15%
  1869/12870 [============>--------------------------------------------------------------------------]  15%
  1870/12870 [============>--------------------------------------------------------------------------]  15%
  1871/12870 [============>--------------------------------------------------------------------------]  15%
  1872/12870 [============>--------------------------------------------------------------------------]  15%
  1873/12870 [============>--------------------------------------------------------------------------]  15%
  1874/12870 [============>--------------------------------------------------------------------------]  15%
  1875/12870 [============>--------------------------------------------------------------------------]  15%
  1876/12870 [============>--------------------------------------------------------------------------]  15%
  1877/12870 [============>--------------------------------------------------------------------------]  15%
  1878/12870 [============>--------------------------------------------------------------------------]  15%
  1879/12870 [============>--------------------------------------------------------------------------]  15%
  1880/12870 [============>--------------------------------------------------------------------------]  15%
  1881/12870 [============>--------------------------------------------------------------------------]  15%
  1882/12870 [============>--------------------------------------------------------------------------]  15%
  1883/12870 [============>--------------------------------------------------------------------------]  15%
  1884/12870 [============>--------------------------------------------------------------------------]  15%
  1885/12870 [============>--------------------------------------------------------------------------]  15%
  1886/12870 [============>--------------------------------------------------------------------------]  15%
  1887/12870 [============>--------------------------------------------------------------------------]  15%
  1888/12870 [============>--------------------------------------------------------------------------]  15%
  1889/12870 [============>--------------------------------------------------------------------------]  15%
  1890/12870 [============>--------------------------------------------------------------------------]  15%
  1891/12870 [============>--------------------------------------------------------------------------]  15%
  1892/12870 [============>--------------------------------------------------------------------------]  15%
  1893/12870 [============>--------------------------------------------------------------------------]  15%
  1894/12870 [============>--------------------------------------------------------------------------]  15%
  1895/12870 [============>--------------------------------------------------------------------------]  15%
  1896/12870 [============>--------------------------------------------------------------------------]  15%
  1897/12870 [============>--------------------------------------------------------------------------]  15%
  1898/12870 [============>--------------------------------------------------------------------------]  15%
  1899/12870 [============>--------------------------------------------------------------------------]  15%
  1900/12870 [============>--------------------------------------------------------------------------]  15%
  1901/12870 [============>--------------------------------------------------------------------------]  15%
  1902/12870 [============>--------------------------------------------------------------------------]  15%
  1903/12870 [============>--------------------------------------------------------------------------]  15%
  1904/12870 [============>--------------------------------------------------------------------------]  15%
  1905/12870 [============>--------------------------------------------------------------------------]  15%
  1906/12870 [============>--------------------------------------------------------------------------]  15%
  1907/12870 [============>--------------------------------------------------------------------------]  15%
  1908/12870 [============>--------------------------------------------------------------------------]  15%
  1909/12870 [============>--------------------------------------------------------------------------]  15%
  1910/12870 [============>--------------------------------------------------------------------------]  15%
  1911/12870 [============>--------------------------------------------------------------------------]  15%
  1912/12870 [============>--------------------------------------------------------------------------]  15%
  1913/12870 [============>--------------------------------------------------------------------------]  15%
  1914/12870 [============>--------------------------------------------------------------------------]  15%
  1915/12870 [============>--------------------------------------------------------------------------]  15%
  1916/12870 [============>--------------------------------------------------------------------------]  15%
  1917/12870 [============>--------------------------------------------------------------------------]  15%
  1918/12870 [============>--------------------------------------------------------------------------]  15%
  1919/12870 [============>--------------------------------------------------------------------------]  15%
  1920/12870 [============>--------------------------------------------------------------------------]  15%
  1921/12870 [============>--------------------------------------------------------------------------]  15%
  1922/12870 [============>--------------------------------------------------------------------------]  15%
  1923/12870 [============>--------------------------------------------------------------------------]  15%
  1924/12870 [============>--------------------------------------------------------------------------]  15%
  1925/12870 [============>--------------------------------------------------------------------------]  15%
  1926/12870 [============>--------------------------------------------------------------------------]  15%
  1927/12870 [============>--------------------------------------------------------------------------]  15%
  1928/12870 [============>--------------------------------------------------------------------------]  15%
  1929/12870 [============>--------------------------------------------------------------------------]  15%
  1930/12870 [============>--------------------------------------------------------------------------]  15%
  1931/12870 [============>--------------------------------------------------------------------------]  15%
  1932/12870 [============>--------------------------------------------------------------------------]  15%
  1933/12870 [============>--------------------------------------------------------------------------]  15%
  1934/12870 [============>--------------------------------------------------------------------------]  15%
  1935/12870 [============>--------------------------------------------------------------------------]  15%
  1936/12870 [============>--------------------------------------------------------------------------]  15%
  1937/12870 [============>--------------------------------------------------------------------------]  15%
  1938/12870 [============>--------------------------------------------------------------------------]  15%
  1939/12870 [============>--------------------------------------------------------------------------]  15%
  1940/12870 [============>--------------------------------------------------------------------------]  15%
  1941/12870 [============>--------------------------------------------------------------------------]  15%
  1942/12870 [============>--------------------------------------------------------------------------]  15%
  1943/12870 [============>--------------------------------------------------------------------------]  15%
  1944/12870 [============>--------------------------------------------------------------------------]  15%
  1945/12870 [============>--------------------------------------------------------------------------]  15%
  1946/12870 [============>--------------------------------------------------------------------------]  15%
  1947/12870 [============>--------------------------------------------------------------------------]  15%
  1948/12870 [============>--------------------------------------------------------------------------]  15%
  1949/12870 [============>--------------------------------------------------------------------------]  15%
  1950/12870 [============>--------------------------------------------------------------------------]  15%
  1951/12870 [============>--------------------------------------------------------------------------]  15%
  1952/12870 [============>--------------------------------------------------------------------------]  15%
  1953/12870 [============>--------------------------------------------------------------------------]  15%
  1954/12870 [============>--------------------------------------------------------------------------]  15%
  1955/12870 [============>--------------------------------------------------------------------------]  15%
  1956/12870 [============>--------------------------------------------------------------------------]  15%
  1957/12870 [============>--------------------------------------------------------------------------]  15%
  1958/12870 [============>--------------------------------------------------------------------------]  15%
  1959/12870 [============>--------------------------------------------------------------------------]  15%
  1960/12870 [============>--------------------------------------------------------------------------]  15%
  1961/12870 [============>--------------------------------------------------------------------------]  15%
  1962/12870 [============>--------------------------------------------------------------------------]  15%
  1963/12870 [============>--------------------------------------------------------------------------]  15%
  1964/12870 [============>--------------------------------------------------------------------------]  15%
  1965/12870 [============>--------------------------------------------------------------------------]  15%
  1966/12870 [============>--------------------------------------------------------------------------]  15%
  1967/12870 [============>--------------------------------------------------------------------------]  15%
  1968/12870 [============>--------------------------------------------------------------------------]  15%
  1969/12870 [============>--------------------------------------------------------------------------]  15%
  1970/12870 [============>--------------------------------------------------------------------------]  15%
  1971/12870 [============>--------------------------------------------------------------------------]  15%
  1972/12870 [============>--------------------------------------------------------------------------]  15%
  1973/12870 [============>--------------------------------------------------------------------------]  15%
  1974/12870 [============>--------------------------------------------------------------------------]  15%
  1975/12870 [============>--------------------------------------------------------------------------]  15%
  1976/12870 [============>--------------------------------------------------------------------------]  15%
  1977/12870 [============>--------------------------------------------------------------------------]  15%
  1978/12870 [============>--------------------------------------------------------------------------]  15%
  1979/12870 [============>--------------------------------------------------------------------------]  15%
  1980/12870 [============>--------------------------------------------------------------------------]  15%
  1981/12870 [============>--------------------------------------------------------------------------]  15%
  1982/12870 [============>--------------------------------------------------------------------------]  15%
  1983/12870 [============>--------------------------------------------------------------------------]  15%
  1984/12870 [============>--------------------------------------------------------------------------]  15%
  1985/12870 [============>--------------------------------------------------------------------------]  15%
  1986/12870 [============>--------------------------------------------------------------------------]  15%
  1987/12870 [============>--------------------------------------------------------------------------]  15%
  1988/12870 [============>--------------------------------------------------------------------------]  15%
  1989/12870 [============>--------------------------------------------------------------------------]  15%
  1990/12870 [============>--------------------------------------------------------------------------]  15%
  1991/12870 [============>--------------------------------------------------------------------------]  15%
  1992/12870 [============>--------------------------------------------------------------------------]  15%
  1993/12870 [============>--------------------------------------------------------------------------]  15%
  1994/12870 [============>--------------------------------------------------------------------------]  15%
  1995/12870 [============>--------------------------------------------------------------------------]  16%
  1996/12870 [============>--------------------------------------------------------------------------]  16%
  1997/12870 [============>--------------------------------------------------------------------------]  16%
  1998/12870 [=============>-------------------------------------------------------------------------]  16%
  1999/12870 [=============>-------------------------------------------------------------------------]  16%
  2000/12870 [=============>-------------------------------------------------------------------------]  16%
  2001/12870 [=============>-------------------------------------------------------------------------]  16%
  2002/12870 [=============>-------------------------------------------------------------------------]  16%
  2003/12870 [=============>-------------------------------------------------------------------------]  16%
  2004/12870 [=============>-------------------------------------------------------------------------]  16%
  2005/12870 [=============>-------------------------------------------------------------------------]  16%
  2006/12870 [=============>-------------------------------------------------------------------------]  16%
  2007/12870 [=============>-------------------------------------------------------------------------]  16%
  2008/12870 [=============>-------------------------------------------------------------------------]  16%
  2009/12870 [=============>-------------------------------------------------------------------------]  16%
  2010/12870 [=============>-------------------------------------------------------------------------]  16%
  2011/12870 [=============>-------------------------------------------------------------------------]  16%
  2012/12870 [=============>-------------------------------------------------------------------------]  16%
  2013/12870 [=============>-------------------------------------------------------------------------]  16%
  2014/12870 [=============>-------------------------------------------------------------------------]  16%
  2015/12870 [=============>-------------------------------------------------------------------------]  16%
  2016/12870 [=============>-------------------------------------------------------------------------]  16%
  2017/12870 [=============>-------------------------------------------------------------------------]  16%
  2018/12870 [=============>-------------------------------------------------------------------------]  16%
  2019/12870 [=============>-------------------------------------------------------------------------]  16%
  2020/12870 [=============>-------------------------------------------------------------------------]  16%
  2021/12870 [=============>-------------------------------------------------------------------------]  16%
  2022/12870 [=============>-------------------------------------------------------------------------]  16%
  2023/12870 [=============>-------------------------------------------------------------------------]  16%
  2024/12870 [=============>-------------------------------------------------------------------------]  16%
  2025/12870 [=============>-------------------------------------------------------------------------]  16%
  2026/12870 [=============>-------------------------------------------------------------------------]  16%
  2027/12870 [=============>-------------------------------------------------------------------------]  16%
  2028/12870 [=============>-------------------------------------------------------------------------]  16%
  2029/12870 [=============>-------------------------------------------------------------------------]  16%
  2030/12870 [=============>-------------------------------------------------------------------------]  16%
  2031/12870 [=============>-------------------------------------------------------------------------]  16%
  2032/12870 [=============>-------------------------------------------------------------------------]  16%
  2033/12870 [=============>-------------------------------------------------------------------------]  16%
  2034/12870 [=============>-------------------------------------------------------------------------]  16%
  2035/12870 [=============>-------------------------------------------------------------------------]  16%
  2036/12870 [=============>-------------------------------------------------------------------------]  16%
  2037/12870 [=============>-------------------------------------------------------------------------]  16%
  2038/12870 [=============>-------------------------------------------------------------------------]  16%
  2039/12870 [=============>-------------------------------------------------------------------------]  16%
  2040/12870 [=============>-------------------------------------------------------------------------]  16%
  2041/12870 [=============>-------------------------------------------------------------------------]  16%
  2042/12870 [=============>-------------------------------------------------------------------------]  16%
  2043/12870 [=============>-------------------------------------------------------------------------]  16%
  2044/12870 [=============>-------------------------------------------------------------------------]  16%
  2045/12870 [=============>-------------------------------------------------------------------------]  16%
  2046/12870 [=============>-------------------------------------------------------------------------]  16%
  2047/12870 [=============>-------------------------------------------------------------------------]  16%
  2048/12870 [=============>-------------------------------------------------------------------------]  16%
  2049/12870 [=============>-------------------------------------------------------------------------]  16%
  2050/12870 [=============>-------------------------------------------------------------------------]  16%
  2051/12870 [=============>-------------------------------------------------------------------------]  16%
  2052/12870 [=============>-------------------------------------------------------------------------]  16%
  2053/12870 [=============>-------------------------------------------------------------------------]  16%
  2054/12870 [=============>-------------------------------------------------------------------------]  16%
  2055/12870 [=============>-------------------------------------------------------------------------]  16%
  2056/12870 [=============>-------------------------------------------------------------------------]  16%
  2057/12870 [=============>-------------------------------------------------------------------------]  16%
  2058/12870 [=============>-------------------------------------------------------------------------]  16%
  2059/12870 [=============>-------------------------------------------------------------------------]  16%
  2060/12870 [=============>-------------------------------------------------------------------------]  16%
  2061/12870 [=============>-------------------------------------------------------------------------]  16%
  2062/12870 [=============>-------------------------------------------------------------------------]  16%
  2063/12870 [=============>-------------------------------------------------------------------------]  16%
  2064/12870 [=============>-------------------------------------------------------------------------]  16%
  2065/12870 [=============>-------------------------------------------------------------------------]  16%
  2066/12870 [=============>-------------------------------------------------------------------------]  16%
  2067/12870 [=============>-------------------------------------------------------------------------]  16%
  2068/12870 [=============>-------------------------------------------------------------------------]  16%
  2069/12870 [=============>-------------------------------------------------------------------------]  16%
  2070/12870 [=============>-------------------------------------------------------------------------]  16%
  2071/12870 [=============>-------------------------------------------------------------------------]  16%
  2072/12870 [=============>-------------------------------------------------------------------------]  16%
  2073/12870 [=============>-------------------------------------------------------------------------]  16%
  2074/12870 [=============>-------------------------------------------------------------------------]  16%
  2075/12870 [=============>-------------------------------------------------------------------------]  16%
  2076/12870 [=============>-------------------------------------------------------------------------]  16%
  2077/12870 [=============>-------------------------------------------------------------------------]  16%
  2078/12870 [=============>-------------------------------------------------------------------------]  16%
  2079/12870 [=============>-------------------------------------------------------------------------]  16%
  2080/12870 [=============>-------------------------------------------------------------------------]  16%
  2081/12870 [=============>-------------------------------------------------------------------------]  16%
  2082/12870 [=============>-------------------------------------------------------------------------]  16%
  2083/12870 [=============>-------------------------------------------------------------------------]  16%
  2084/12870 [=============>-------------------------------------------------------------------------]  16%
  2085/12870 [=============>-------------------------------------------------------------------------]  16%
  2086/12870 [=============>-------------------------------------------------------------------------]  16%
  2087/12870 [=============>-------------------------------------------------------------------------]  16%
  2088/12870 [=============>-------------------------------------------------------------------------]  16%
  2089/12870 [=============>-------------------------------------------------------------------------]  16%
  2090/12870 [=============>-------------------------------------------------------------------------]  16%
  2091/12870 [=============>-------------------------------------------------------------------------]  16%
  2092/12870 [=============>-------------------------------------------------------------------------]  16%
  2093/12870 [=============>-------------------------------------------------------------------------]  16%
  2094/12870 [=============>-------------------------------------------------------------------------]  16%
  2095/12870 [=============>-------------------------------------------------------------------------]  16%
  2096/12870 [=============>-------------------------------------------------------------------------]  16%
  2097/12870 [=============>-------------------------------------------------------------------------]  16%
  2098/12870 [=============>-------------------------------------------------------------------------]  16%
  2099/12870 [=============>-------------------------------------------------------------------------]  16%
  2100/12870 [=============>-------------------------------------------------------------------------]  16%
  2101/12870 [=============>-------------------------------------------------------------------------]  16%
  2102/12870 [=============>-------------------------------------------------------------------------]  16%
  2103/12870 [=============>-------------------------------------------------------------------------]  16%
  2104/12870 [=============>-------------------------------------------------------------------------]  16%
  2105/12870 [=============>-------------------------------------------------------------------------]  16%
  2106/12870 [=============>-------------------------------------------------------------------------]  16%
  2107/12870 [=============>-------------------------------------------------------------------------]  16%
  2108/12870 [=============>-------------------------------------------------------------------------]  16%
  2109/12870 [=============>-------------------------------------------------------------------------]  16%
  2110/12870 [=============>-------------------------------------------------------------------------]  16%
  2111/12870 [=============>-------------------------------------------------------------------------]  16%
  2112/12870 [=============>-------------------------------------------------------------------------]  16%
  2113/12870 [=============>-------------------------------------------------------------------------]  16%
  2114/12870 [=============>-------------------------------------------------------------------------]  16%
  2115/12870 [=============>-------------------------------------------------------------------------]  16%
  2116/12870 [=============>-------------------------------------------------------------------------]  16%
  2117/12870 [=============>-------------------------------------------------------------------------]  16%
  2118/12870 [=============>-------------------------------------------------------------------------]  16%
  2119/12870 [=============>-------------------------------------------------------------------------]  16%
  2120/12870 [=============>-------------------------------------------------------------------------]  16%
  2121/12870 [=============>-------------------------------------------------------------------------]  16%
  2122/12870 [=============>-------------------------------------------------------------------------]  16%
  2123/12870 [=============>-------------------------------------------------------------------------]  16%
  2124/12870 [=============>-------------------------------------------------------------------------]  17%
  2125/12870 [=============>-------------------------------------------------------------------------]  17%
  2126/12870 [=============>-------------------------------------------------------------------------]  17%
  2127/12870 [=============>-------------------------------------------------------------------------]  17%
  2128/12870 [=============>-------------------------------------------------------------------------]  17%
  2129/12870 [=============>-------------------------------------------------------------------------]  17%
  2130/12870 [=============>-------------------------------------------------------------------------]  17%
  2131/12870 [=============>-------------------------------------------------------------------------]  17%
  2132/12870 [=============>-------------------------------------------------------------------------]  17%
  2133/12870 [=============>-------------------------------------------------------------------------]  17%
  2134/12870 [=============>-------------------------------------------------------------------------]  17%
  2135/12870 [=============>-------------------------------------------------------------------------]  17%
  2136/12870 [=============>-------------------------------------------------------------------------]  17%
  2137/12870 [=============>-------------------------------------------------------------------------]  17%
  2138/12870 [=============>-------------------------------------------------------------------------]  17%
  2139/12870 [=============>-------------------------------------------------------------------------]  17%
  2140/12870 [=============>-------------------------------------------------------------------------]  17%
  2141/12870 [=============>-------------------------------------------------------------------------]  17%
  2142/12870 [=============>-------------------------------------------------------------------------]  17%
  2143/12870 [=============>-------------------------------------------------------------------------]  17%
  2144/12870 [=============>-------------------------------------------------------------------------]  17%
  2145/12870 [=============>-------------------------------------------------------------------------]  17%
  2146/12870 [==============>------------------------------------------------------------------------]  17%
  2147/12870 [==============>------------------------------------------------------------------------]  17%
  2148/12870 [==============>------------------------------------------------------------------------]  17%
  2149/12870 [==============>------------------------------------------------------------------------]  17%
  2150/12870 [==============>------------------------------------------------------------------------]  17%
  2151/12870 [==============>------------------------------------------------------------------------]  17%
  2152/12870 [==============>------------------------------------------------------------------------]  17%
  2153/12870 [==============>------------------------------------------------------------------------]  17%
  2154/12870 [==============>------------------------------------------------------------------------]  17%
  2155/12870 [==============>------------------------------------------------------------------------]  17%
  2156/12870 [==============>------------------------------------------------------------------------]  17%
  2157/12870 [==============>------------------------------------------------------------------------]  17%
  2158/12870 [==============>------------------------------------------------------------------------]  17%
  2159/12870 [==============>------------------------------------------------------------------------]  17%
  2160/12870 [==============>------------------------------------------------------------------------]  17%
  2161/12870 [==============>------------------------------------------------------------------------]  17%
  2162/12870 [==============>------------------------------------------------------------------------]  17%
  2163/12870 [==============>------------------------------------------------------------------------]  17%
  2164/12870 [==============>------------------------------------------------------------------------]  17%
  2165/12870 [==============>------------------------------------------------------------------------]  17%
  2166/12870 [==============>------------------------------------------------------------------------]  17%
  2167/12870 [==============>------------------------------------------------------------------------]  17%
  2168/12870 [==============>------------------------------------------------------------------------]  17%
  2169/12870 [==============>------------------------------------------------------------------------]  17%
  2170/12870 [==============>------------------------------------------------------------------------]  17%
  2171/12870 [==============>------------------------------------------------------------------------]  17%
  2172/12870 [==============>------------------------------------------------------------------------]  17%
  2173/12870 [==============>------------------------------------------------------------------------]  17%
  2174/12870 [==============>------------------------------------------------------------------------]  17%
  2175/12870 [==============>------------------------------------------------------------------------]  17%
  2176/12870 [==============>------------------------------------------------------------------------]  17%
  2177/12870 [==============>------------------------------------------------------------------------]  17%
  2178/12870 [==============>------------------------------------------------------------------------]  17%
  2179/12870 [==============>------------------------------------------------------------------------]  17%
  2180/12870 [==============>------------------------------------------------------------------------]  17%
  2181/12870 [==============>------------------------------------------------------------------------]  17%
  2182/12870 [==============>------------------------------------------------------------------------]  17%
  2183/12870 [==============>------------------------------------------------------------------------]  17%
  2184/12870 [==============>------------------------------------------------------------------------]  17%
  2185/12870 [==============>------------------------------------------------------------------------]  17%
  2186/12870 [==============>------------------------------------------------------------------------]  17%
  2187/12870 [==============>------------------------------------------------------------------------]  17%
  2188/12870 [==============>------------------------------------------------------------------------]  17%
  2189/12870 [==============>------------------------------------------------------------------------]  17%
  2190/12870 [==============>------------------------------------------------------------------------]  17%
  2191/12870 [==============>------------------------------------------------------------------------]  17%
  2192/12870 [==============>------------------------------------------------------------------------]  17%
  2193/12870 [==============>------------------------------------------------------------------------]  17%
  2194/12870 [==============>------------------------------------------------------------------------]  17%
  2195/12870 [==============>------------------------------------------------------------------------]  17%
  2196/12870 [==============>------------------------------------------------------------------------]  17%
  2197/12870 [==============>------------------------------------------------------------------------]  17%
  2198/12870 [==============>------------------------------------------------------------------------]  17%
  2199/12870 [==============>------------------------------------------------------------------------]  17%
  2200/12870 [==============>------------------------------------------------------------------------]  17%
  2201/12870 [==============>------------------------------------------------------------------------]  17%
  2202/12870 [==============>------------------------------------------------------------------------]  17%
  2203/12870 [==============>------------------------------------------------------------------------]  17%
  2204/12870 [==============>------------------------------------------------------------------------]  17%
  2205/12870 [==============>------------------------------------------------------------------------]  17%
  2206/12870 [==============>------------------------------------------------------------------------]  17%
  2207/12870 [==============>------------------------------------------------------------------------]  17%
  2208/12870 [==============>------------------------------------------------------------------------]  17%
  2209/12870 [==============>------------------------------------------------------------------------]  17%
  2210/12870 [==============>------------------------------------------------------------------------]  17%
  2211/12870 [==============>------------------------------------------------------------------------]  17%
  2212/12870 [==============>------------------------------------------------------------------------]  17%
  2213/12870 [==============>------------------------------------------------------------------------]  17%
  2214/12870 [==============>------------------------------------------------------------------------]  17%
  2215/12870 [==============>------------------------------------------------------------------------]  17%
  2216/12870 [==============>------------------------------------------------------------------------]  17%
  2217/12870 [==============>------------------------------------------------------------------------]  17%
  2218/12870 [==============>------------------------------------------------------------------------]  17%
  2219/12870 [==============>------------------------------------------------------------------------]  17%
  2220/12870 [==============>------------------------------------------------------------------------]  17%
  2221/12870 [==============>------------------------------------------------------------------------]  17%
  2222/12870 [==============>------------------------------------------------------------------------]  17%
  2223/12870 [==============>------------------------------------------------------------------------]  17%
  2224/12870 [==============>------------------------------------------------------------------------]  17%
  2225/12870 [==============>------------------------------------------------------------------------]  17%
  2226/12870 [==============>------------------------------------------------------------------------]  17%
  2227/12870 [==============>------------------------------------------------------------------------]  17%
  2228/12870 [==============>------------------------------------------------------------------------]  17%
  2229/12870 [==============>------------------------------------------------------------------------]  17%
  2230/12870 [==============>------------------------------------------------------------------------]  17%
  2231/12870 [==============>------------------------------------------------------------------------]  17%
  2232/12870 [==============>------------------------------------------------------------------------]  17%
  2233/12870 [==============>------------------------------------------------------------------------]  17%
  2234/12870 [==============>------------------------------------------------------------------------]  17%
  2235/12870 [==============>------------------------------------------------------------------------]  17%
  2236/12870 [==============>------------------------------------------------------------------------]  17%
  2237/12870 [==============>------------------------------------------------------------------------]  17%
  2238/12870 [==============>------------------------------------------------------------------------]  17%
  2239/12870 [==============>------------------------------------------------------------------------]  17%
  2240/12870 [==============>------------------------------------------------------------------------]  17%
  2241/12870 [==============>------------------------------------------------------------------------]  17%
  2242/12870 [==============>------------------------------------------------------------------------]  17%
  2243/12870 [==============>------------------------------------------------------------------------]  17%
  2244/12870 [==============>------------------------------------------------------------------------]  17%
  2245/12870 [==============>------------------------------------------------------------------------]  17%
  2246/12870 [==============>------------------------------------------------------------------------]  17%
  2247/12870 [==============>------------------------------------------------------------------------]  17%
  2248/12870 [==============>------------------------------------------------------------------------]  17%
  2249/12870 [==============>------------------------------------------------------------------------]  17%
  2250/12870 [==============>------------------------------------------------------------------------]  17%
  2251/12870 [==============>------------------------------------------------------------------------]  17%
  2252/12870 [==============>------------------------------------------------------------------------]  17%
  2253/12870 [==============>------------------------------------------------------------------------]  18%
  2254/12870 [==============>------------------------------------------------------------------------]  18%
  2255/12870 [==============>------------------------------------------------------------------------]  18%
  2256/12870 [==============>------------------------------------------------------------------------]  18%
  2257/12870 [==============>------------------------------------------------------------------------]  18%
  2258/12870 [==============>------------------------------------------------------------------------]  18%
  2259/12870 [==============>------------------------------------------------------------------------]  18%
  2260/12870 [==============>------------------------------------------------------------------------]  18%
  2261/12870 [==============>------------------------------------------------------------------------]  18%
  2262/12870 [==============>------------------------------------------------------------------------]  18%
  2263/12870 [==============>------------------------------------------------------------------------]  18%
  2264/12870 [==============>------------------------------------------------------------------------]  18%
  2265/12870 [==============>------------------------------------------------------------------------]  18%
  2266/12870 [==============>------------------------------------------------------------------------]  18%
  2267/12870 [==============>------------------------------------------------------------------------]  18%
  2268/12870 [==============>------------------------------------------------------------------------]  18%
  2269/12870 [==============>------------------------------------------------------------------------]  18%
  2270/12870 [==============>------------------------------------------------------------------------]  18%
  2271/12870 [==============>------------------------------------------------------------------------]  18%
  2272/12870 [==============>------------------------------------------------------------------------]  18%
  2273/12870 [==============>------------------------------------------------------------------------]  18%
  2274/12870 [==============>------------------------------------------------------------------------]  18%
  2275/12870 [==============>------------------------------------------------------------------------]  18%
  2276/12870 [==============>------------------------------------------------------------------------]  18%
  2277/12870 [==============>------------------------------------------------------------------------]  18%
  2278/12870 [==============>------------------------------------------------------------------------]  18%
  2279/12870 [==============>------------------------------------------------------------------------]  18%
  2280/12870 [==============>------------------------------------------------------------------------]  18%
  2281/12870 [==============>------------------------------------------------------------------------]  18%
  2282/12870 [==============>------------------------------------------------------------------------]  18%
  2283/12870 [==============>------------------------------------------------------------------------]  18%
  2284/12870 [==============>------------------------------------------------------------------------]  18%
  2285/12870 [==============>------------------------------------------------------------------------]  18%
  2286/12870 [==============>------------------------------------------------------------------------]  18%
  2287/12870 [==============>------------------------------------------------------------------------]  18%
  2288/12870 [==============>------------------------------------------------------------------------]  18%
  2289/12870 [==============>------------------------------------------------------------------------]  18%
  2290/12870 [==============>------------------------------------------------------------------------]  18%
  2291/12870 [==============>------------------------------------------------------------------------]  18%
  2292/12870 [==============>------------------------------------------------------------------------]  18%
  2293/12870 [===============>-----------------------------------------------------------------------]  18%
  2294/12870 [===============>-----------------------------------------------------------------------]  18%
  2295/12870 [===============>-----------------------------------------------------------------------]  18%
  2296/12870 [===============>-----------------------------------------------------------------------]  18%
  2297/12870 [===============>-----------------------------------------------------------------------]  18%
  2298/12870 [===============>-----------------------------------------------------------------------]  18%
  2299/12870 [===============>-----------------------------------------------------------------------]  18%
  2300/12870 [===============>-----------------------------------------------------------------------]  18%
  2301/12870 [===============>-----------------------------------------------------------------------]  18%
  2302/12870 [===============>-----------------------------------------------------------------------]  18%
  2303/12870 [===============>-----------------------------------------------------------------------]  18%
  2304/12870 [===============>-----------------------------------------------------------------------]  18%
  2305/12870 [===============>-----------------------------------------------------------------------]  18%
  2306/12870 [===============>-----------------------------------------------------------------------]  18%
  2307/12870 [===============>-----------------------------------------------------------------------]  18%
  2308/12870 [===============>-----------------------------------------------------------------------]  18%
  2309/12870 [===============>-----------------------------------------------------------------------]  18%
  2310/12870 [===============>-----------------------------------------------------------------------]  18%
  2311/12870 [===============>-----------------------------------------------------------------------]  18%
  2312/12870 [===============>-----------------------------------------------------------------------]  18%
  2313/12870 [===============>-----------------------------------------------------------------------]  18%
  2314/12870 [===============>-----------------------------------------------------------------------]  18%
  2315/12870 [===============>-----------------------------------------------------------------------]  18%
  2316/12870 [===============>-----------------------------------------------------------------------]  18%
  2317/12870 [===============>-----------------------------------------------------------------------]  18%
  2318/12870 [===============>-----------------------------------------------------------------------]  18%
  2319/12870 [===============>-----------------------------------------------------------------------]  18%
  2320/12870 [===============>-----------------------------------------------------------------------]  18%
  2321/12870 [===============>-----------------------------------------------------------------------]  18%
  2322/12870 [===============>-----------------------------------------------------------------------]  18%
  2323/12870 [===============>-----------------------------------------------------------------------]  18%
  2324/12870 [===============>-----------------------------------------------------------------------]  18%
  2325/12870 [===============>-----------------------------------------------------------------------]  18%
  2326/12870 [===============>-----------------------------------------------------------------------]  18%
  2327/12870 [===============>-----------------------------------------------------------------------]  18%
  2328/12870 [===============>-----------------------------------------------------------------------]  18%
  2329/12870 [===============>-----------------------------------------------------------------------]  18%
  2330/12870 [===============>-----------------------------------------------------------------------]  18%
  2331/12870 [===============>-----------------------------------------------------------------------]  18%
  2332/12870 [===============>-----------------------------------------------------------------------]  18%
  2333/12870 [===============>-----------------------------------------------------------------------]  18%
  2334/12870 [===============>-----------------------------------------------------------------------]  18%
  2335/12870 [===============>-----------------------------------------------------------------------]  18%
  2336/12870 [===============>-----------------------------------------------------------------------]  18%
  2337/12870 [===============>-----------------------------------------------------------------------]  18%
  2338/12870 [===============>-----------------------------------------------------------------------]  18%
  2339/12870 [===============>-----------------------------------------------------------------------]  18%
  2340/12870 [===============>-----------------------------------------------------------------------]  18%
  2341/12870 [===============>-----------------------------------------------------------------------]  18%
  2342/12870 [===============>-----------------------------------------------------------------------]  18%
  2343/12870 [===============>-----------------------------------------------------------------------]  18%
  2344/12870 [===============>-----------------------------------------------------------------------]  18%
  2345/12870 [===============>-----------------------------------------------------------------------]  18%
  2346/12870 [===============>-----------------------------------------------------------------------]  18%
  2347/12870 [===============>-----------------------------------------------------------------------]  18%
  2348/12870 [===============>-----------------------------------------------------------------------]  18%
  2349/12870 [===============>-----------------------------------------------------------------------]  18%
  2350/12870 [===============>-----------------------------------------------------------------------]  18%
  2351/12870 [===============>-----------------------------------------------------------------------]  18%
  2352/12870 [===============>-----------------------------------------------------------------------]  18%
  2353/12870 [===============>-----------------------------------------------------------------------]  18%
  2354/12870 [===============>-----------------------------------------------------------------------]  18%
  2355/12870 [===============>-----------------------------------------------------------------------]  18%
  2356/12870 [===============>-----------------------------------------------------------------------]  18%
  2357/12870 [===============>-----------------------------------------------------------------------]  18%
  2358/12870 [===============>-----------------------------------------------------------------------]  18%
  2359/12870 [===============>-----------------------------------------------------------------------]  18%
  2360/12870 [===============>-----------------------------------------------------------------------]  18%
  2361/12870 [===============>-----------------------------------------------------------------------]  18%
  2362/12870 [===============>-----------------------------------------------------------------------]  18%
  2363/12870 [===============>-----------------------------------------------------------------------]  18%
  2364/12870 [===============>-----------------------------------------------------------------------]  18%
  2365/12870 [===============>-----------------------------------------------------------------------]  18%
  2366/12870 [===============>-----------------------------------------------------------------------]  18%
  2367/12870 [===============>-----------------------------------------------------------------------]  18%
  2368/12870 [===============>-----------------------------------------------------------------------]  18%
  2369/12870 [===============>-----------------------------------------------------------------------]  18%
  2370/12870 [===============>-----------------------------------------------------------------------]  18%
  2371/12870 [===============>-----------------------------------------------------------------------]  18%
  2372/12870 [===============>-----------------------------------------------------------------------]  18%
  2373/12870 [===============>-----------------------------------------------------------------------]  18%
  2374/12870 [===============>-----------------------------------------------------------------------]  18%
  2375/12870 [===============>-----------------------------------------------------------------------]  18%
  2376/12870 [===============>-----------------------------------------------------------------------]  18%
  2377/12870 [===============>-----------------------------------------------------------------------]  18%
  2378/12870 [===============>-----------------------------------------------------------------------]  18%
  2379/12870 [===============>-----------------------------------------------------------------------]  18%
  2380/12870 [===============>-----------------------------------------------------------------------]  18%
  2381/12870 [===============>-----------------------------------------------------------------------]  19%
  2382/12870 [===============>-----------------------------------------------------------------------]  19%
  2383/12870 [===============>-----------------------------------------------------------------------]  19%
  2384/12870 [===============>-----------------------------------------------------------------------]  19%
  2385/12870 [===============>-----------------------------------------------------------------------]  19%
  2386/12870 [===============>-----------------------------------------------------------------------]  19%
  2387/12870 [===============>-----------------------------------------------------------------------]  19%
  2388/12870 [===============>-----------------------------------------------------------------------]  19%
  2389/12870 [===============>-----------------------------------------------------------------------]  19%
  2390/12870 [===============>-----------------------------------------------------------------------]  19%
  2391/12870 [===============>-----------------------------------------------------------------------]  19%
  2392/12870 [===============>-----------------------------------------------------------------------]  19%
  2393/12870 [===============>-----------------------------------------------------------------------]  19%
  2394/12870 [===============>-----------------------------------------------------------------------]  19%
  2395/12870 [===============>-----------------------------------------------------------------------]  19%
  2396/12870 [===============>-----------------------------------------------------------------------]  19%
  2397/12870 [===============>-----------------------------------------------------------------------]  19%
  2398/12870 [===============>-----------------------------------------------------------------------]  19%
  2399/12870 [===============>-----------------------------------------------------------------------]  19%
  2400/12870 [===============>-----------------------------------------------------------------------]  19%
  2401/12870 [===============>-----------------------------------------------------------------------]  19%
  2402/12870 [===============>-----------------------------------------------------------------------]  19%
  2403/12870 [===============>-----------------------------------------------------------------------]  19%
  2404/12870 [===============>-----------------------------------------------------------------------]  19%
  2405/12870 [===============>-----------------------------------------------------------------------]  19%
  2406/12870 [===============>-----------------------------------------------------------------------]  19%
  2407/12870 [===============>-----------------------------------------------------------------------]  19%
  2408/12870 [===============>-----------------------------------------------------------------------]  19%
  2409/12870 [===============>-----------------------------------------------------------------------]  19%
  2410/12870 [===============>-----------------------------------------------------------------------]  19%
  2411/12870 [===============>-----------------------------------------------------------------------]  19%
  2412/12870 [===============>-----------------------------------------------------------------------]  19%
  2413/12870 [===============>-----------------------------------------------------------------------]  19%
  2414/12870 [===============>-----------------------------------------------------------------------]  19%
  2415/12870 [===============>-----------------------------------------------------------------------]  19%
  2416/12870 [===============>-----------------------------------------------------------------------]  19%
  2417/12870 [===============>-----------------------------------------------------------------------]  19%
  2418/12870 [===============>-----------------------------------------------------------------------]  19%
  2419/12870 [===============>-----------------------------------------------------------------------]  19%
  2420/12870 [===============>-----------------------------------------------------------------------]  19%
  2421/12870 [===============>-----------------------------------------------------------------------]  19%
  2422/12870 [===============>-----------------------------------------------------------------------]  19%
  2423/12870 [===============>-----------------------------------------------------------------------]  19%
  2424/12870 [===============>-----------------------------------------------------------------------]  19%
  2425/12870 [===============>-----------------------------------------------------------------------]  19%
  2426/12870 [===============>-----------------------------------------------------------------------]  19%
  2427/12870 [===============>-----------------------------------------------------------------------]  19%
  2428/12870 [===============>-----------------------------------------------------------------------]  19%
  2429/12870 [===============>-----------------------------------------------------------------------]  19%
  2430/12870 [===============>-----------------------------------------------------------------------]  19%
  2431/12870 [===============>-----------------------------------------------------------------------]  19%
  2432/12870 [===============>-----------------------------------------------------------------------]  19%
  2433/12870 [===============>-----------------------------------------------------------------------]  19%
  2434/12870 [===============>-----------------------------------------------------------------------]  19%
  2435/12870 [===============>-----------------------------------------------------------------------]  19%
  2436/12870 [===============>-----------------------------------------------------------------------]  19%
  2437/12870 [===============>-----------------------------------------------------------------------]  19%
  2438/12870 [===============>-----------------------------------------------------------------------]  19%
  2439/12870 [===============>-----------------------------------------------------------------------]  19%
  2440/12870 [===============>-----------------------------------------------------------------------]  19%
  2441/12870 [================>----------------------------------------------------------------------]  19%
  2442/12870 [================>----------------------------------------------------------------------]  19%
  2443/12870 [================>----------------------------------------------------------------------]  19%
  2444/12870 [================>----------------------------------------------------------------------]  19%
  2445/12870 [================>----------------------------------------------------------------------]  19%
  2446/12870 [================>----------------------------------------------------------------------]  19%
  2447/12870 [================>----------------------------------------------------------------------]  19%
  2448/12870 [================>----------------------------------------------------------------------]  19%
  2449/12870 [================>----------------------------------------------------------------------]  19%
  2450/12870 [================>----------------------------------------------------------------------]  19%
  2451/12870 [================>----------------------------------------------------------------------]  19%
  2452/12870 [================>----------------------------------------------------------------------]  19%
  2453/12870 [================>----------------------------------------------------------------------]  19%
  2454/12870 [================>----------------------------------------------------------------------]  19%
  2455/12870 [================>----------------------------------------------------------------------]  19%
  2456/12870 [================>----------------------------------------------------------------------]  19%
  2457/12870 [================>----------------------------------------------------------------------]  19%
  2458/12870 [================>----------------------------------------------------------------------]  19%
  2459/12870 [================>----------------------------------------------------------------------]  19%
  2460/12870 [================>----------------------------------------------------------------------]  19%
  2461/12870 [================>----------------------------------------------------------------------]  19%
  2462/12870 [================>----------------------------------------------------------------------]  19%
  2463/12870 [================>----------------------------------------------------------------------]  19%
  2464/12870 [================>----------------------------------------------------------------------]  19%
  2465/12870 [================>----------------------------------------------------------------------]  19%
  2466/12870 [================>----------------------------------------------------------------------]  19%
  2467/12870 [================>----------------------------------------------------------------------]  19%
  2468/12870 [================>----------------------------------------------------------------------]  19%
  2469/12870 [================>----------------------------------------------------------------------]  19%
  2470/12870 [================>----------------------------------------------------------------------]  19%
  2471/12870 [================>----------------------------------------------------------------------]  19%
  2472/12870 [================>----------------------------------------------------------------------]  19%
  2473/12870 [================>----------------------------------------------------------------------]  19%
  2474/12870 [================>----------------------------------------------------------------------]  19%
  2475/12870 [================>----------------------------------------------------------------------]  19%
  2476/12870 [================>----------------------------------------------------------------------]  19%
  2477/12870 [================>----------------------------------------------------------------------]  19%
  2478/12870 [================>----------------------------------------------------------------------]  19%
  2479/12870 [================>----------------------------------------------------------------------]  19%
  2480/12870 [================>----------------------------------------------------------------------]  19%
  2481/12870 [================>----------------------------------------------------------------------]  19%
  2482/12870 [================>----------------------------------------------------------------------]  19%
  2483/12870 [================>----------------------------------------------------------------------]  19%
  2484/12870 [================>----------------------------------------------------------------------]  19%
  2485/12870 [================>----------------------------------------------------------------------]  19%
  2486/12870 [================>----------------------------------------------------------------------]  19%
  2487/12870 [================>----------------------------------------------------------------------]  19%
  2488/12870 [================>----------------------------------------------------------------------]  19%
  2489/12870 [================>----------------------------------------------------------------------]  19%
  2490/12870 [================>----------------------------------------------------------------------]  19%
  2491/12870 [================>----------------------------------------------------------------------]  19%
  2492/12870 [================>----------------------------------------------------------------------]  19%
  2493/12870 [================>----------------------------------------------------------------------]  19%
  2494/12870 [================>----------------------------------------------------------------------]  19%
  2495/12870 [================>----------------------------------------------------------------------]  19%
  2496/12870 [================>----------------------------------------------------------------------]  19%
  2497/12870 [================>----------------------------------------------------------------------]  19%
  2498/12870 [================>----------------------------------------------------------------------]  19%
  2499/12870 [================>----------------------------------------------------------------------]  19%
  2500/12870 [================>----------------------------------------------------------------------]  19%
  2501/12870 [================>----------------------------------------------------------------------]  19%
  2502/12870 [================>----------------------------------------------------------------------]  19%
  2503/12870 [================>----------------------------------------------------------------------]  19%
  2504/12870 [================>----------------------------------------------------------------------]  19%
  2505/12870 [================>----------------------------------------------------------------------]  19%
  2506/12870 [================>----------------------------------------------------------------------]  19%
  2507/12870 [================>----------------------------------------------------------------------]  19%
  2508/12870 [================>----------------------------------------------------------------------]  19%
  2509/12870 [================>----------------------------------------------------------------------]  19%
  2510/12870 [================>----------------------------------------------------------------------]  20%
  2511/12870 [================>----------------------------------------------------------------------]  20%
  2512/12870 [================>----------------------------------------------------------------------]  20%
  2513/12870 [================>----------------------------------------------------------------------]  20%
  2514/12870 [================>----------------------------------------------------------------------]  20%
  2515/12870 [================>----------------------------------------------------------------------]  20%
  2516/12870 [================>----------------------------------------------------------------------]  20%
  2517/12870 [================>----------------------------------------------------------------------]  20%
  2518/12870 [================>----------------------------------------------------------------------]  20%
  2519/12870 [================>----------------------------------------------------------------------]  20%
  2520/12870 [================>----------------------------------------------------------------------]  20%
  2521/12870 [================>----------------------------------------------------------------------]  20%
  2522/12870 [================>----------------------------------------------------------------------]  20%
  2523/12870 [================>----------------------------------------------------------------------]  20%
  2524/12870 [================>----------------------------------------------------------------------]  20%
  2525/12870 [================>----------------------------------------------------------------------]  20%
  2526/12870 [================>----------------------------------------------------------------------]  20%
  2527/12870 [================>----------------------------------------------------------------------]  20%
  2528/12870 [================>----------------------------------------------------------------------]  20%
  2529/12870 [================>----------------------------------------------------------------------]  20%
  2530/12870 [================>----------------------------------------------------------------------]  20%
  2531/12870 [================>----------------------------------------------------------------------]  20%
  2532/12870 [================>----------------------------------------------------------------------]  20%
  2533/12870 [================>----------------------------------------------------------------------]  20%
  2534/12870 [================>----------------------------------------------------------------------]  20%
  2535/12870 [================>----------------------------------------------------------------------]  20%
  2536/12870 [================>----------------------------------------------------------------------]  20%
  2537/12870 [================>----------------------------------------------------------------------]  20%
  2538/12870 [================>----------------------------------------------------------------------]  20%
  2539/12870 [================>----------------------------------------------------------------------]  20%
  2540/12870 [================>----------------------------------------------------------------------]  20%
  2541/12870 [================>----------------------------------------------------------------------]  20%
  2542/12870 [================>----------------------------------------------------------------------]  20%
  2543/12870 [================>----------------------------------------------------------------------]  20%
  2544/12870 [================>----------------------------------------------------------------------]  20%
  2545/12870 [================>----------------------------------------------------------------------]  20%
  2546/12870 [================>----------------------------------------------------------------------]  20%
  2547/12870 [================>----------------------------------------------------------------------]  20%
  2548/12870 [================>----------------------------------------------------------------------]  20%
  2549/12870 [================>----------------------------------------------------------------------]  20%
  2550/12870 [================>----------------------------------------------------------------------]  20%
  2551/12870 [================>----------------------------------------------------------------------]  20%
  2552/12870 [================>----------------------------------------------------------------------]  20%
  2553/12870 [================>----------------------------------------------------------------------]  20%
  2554/12870 [================>----------------------------------------------------------------------]  20%
  2555/12870 [================>----------------------------------------------------------------------]  20%
  2556/12870 [================>----------------------------------------------------------------------]  20%
  2557/12870 [================>----------------------------------------------------------------------]  20%
  2558/12870 [================>----------------------------------------------------------------------]  20%
  2559/12870 [================>----------------------------------------------------------------------]  20%
  2560/12870 [================>----------------------------------------------------------------------]  20%
  2561/12870 [================>----------------------------------------------------------------------]  20%
  2562/12870 [================>----------------------------------------------------------------------]  20%
  2563/12870 [================>----------------------------------------------------------------------]  20%
  2564/12870 [================>----------------------------------------------------------------------]  20%
  2565/12870 [================>----------------------------------------------------------------------]  20%
  2566/12870 [================>----------------------------------------------------------------------]  20%
  2567/12870 [================>----------------------------------------------------------------------]  20%
  2568/12870 [================>----------------------------------------------------------------------]  20%
  2569/12870 [================>----------------------------------------------------------------------]  20%
  2570/12870 [================>----------------------------------------------------------------------]  20%
  2571/12870 [================>----------------------------------------------------------------------]  20%
  2572/12870 [================>----------------------------------------------------------------------]  20%
  2573/12870 [================>----------------------------------------------------------------------]  20%
  2574/12870 [================>----------------------------------------------------------------------]  20%
  2575/12870 [================>----------------------------------------------------------------------]  20%
  2576/12870 [================>----------------------------------------------------------------------]  20%
  2577/12870 [================>----------------------------------------------------------------------]  20%
  2578/12870 [================>----------------------------------------------------------------------]  20%
  2579/12870 [================>----------------------------------------------------------------------]  20%
  2580/12870 [================>----------------------------------------------------------------------]  20%
  2581/12870 [================>----------------------------------------------------------------------]  20%
  2582/12870 [================>----------------------------------------------------------------------]  20%
  2583/12870 [================>----------------------------------------------------------------------]  20%
  2584/12870 [================>----------------------------------------------------------------------]  20%
  2585/12870 [================>----------------------------------------------------------------------]  20%
  2586/12870 [================>----------------------------------------------------------------------]  20%
  2587/12870 [================>----------------------------------------------------------------------]  20%
  2588/12870 [================>----------------------------------------------------------------------]  20%
  2589/12870 [=================>---------------------------------------------------------------------]  20%
  2590/12870 [=================>---------------------------------------------------------------------]  20%
  2591/12870 [=================>---------------------------------------------------------------------]  20%
  2592/12870 [=================>---------------------------------------------------------------------]  20%
  2593/12870 [=================>---------------------------------------------------------------------]  20%
  2594/12870 [=================>---------------------------------------------------------------------]  20%
  2595/12870 [=================>---------------------------------------------------------------------]  20%
  2596/12870 [=================>---------------------------------------------------------------------]  20%
  2597/12870 [=================>---------------------------------------------------------------------]  20%
  2598/12870 [=================>---------------------------------------------------------------------]  20%
  2599/12870 [=================>---------------------------------------------------------------------]  20%
  2600/12870 [=================>---------------------------------------------------------------------]  20%
  2601/12870 [=================>---------------------------------------------------------------------]  20%
  2602/12870 [=================>---------------------------------------------------------------------]  20%
  2603/12870 [=================>---------------------------------------------------------------------]  20%
  2604/12870 [=================>---------------------------------------------------------------------]  20%
  2605/12870 [=================>---------------------------------------------------------------------]  20%
  2606/12870 [=================>---------------------------------------------------------------------]  20%
  2607/12870 [=================>---------------------------------------------------------------------]  20%
  2608/12870 [=================>---------------------------------------------------------------------]  20%
  2609/12870 [=================>---------------------------------------------------------------------]  20%
  2610/12870 [=================>---------------------------------------------------------------------]  20%
  2611/12870 [=================>---------------------------------------------------------------------]  20%
  2612/12870 [=================>---------------------------------------------------------------------]  20%
  2613/12870 [=================>---------------------------------------------------------------------]  20%
  2614/12870 [=================>---------------------------------------------------------------------]  20%
  2615/12870 [=================>---------------------------------------------------------------------]  20%
  2616/12870 [=================>---------------------------------------------------------------------]  20%
  2617/12870 [=================>---------------------------------------------------------------------]  20%
  2618/12870 [=================>---------------------------------------------------------------------]  20%
  2619/12870 [=================>---------------------------------------------------------------------]  20%
  2620/12870 [=================>---------------------------------------------------------------------]  20%
  2621/12870 [=================>---------------------------------------------------------------------]  20%
  2622/12870 [=================>---------------------------------------------------------------------]  20%
  2623/12870 [=================>---------------------------------------------------------------------]  20%
  2624/12870 [=================>---------------------------------------------------------------------]  20%
  2625/12870 [=================>---------------------------------------------------------------------]  20%
  2626/12870 [=================>---------------------------------------------------------------------]  20%
  2627/12870 [=================>---------------------------------------------------------------------]  20%
  2628/12870 [=================>---------------------------------------------------------------------]  20%
  2629/12870 [=================>---------------------------------------------------------------------]  20%
  2630/12870 [=================>---------------------------------------------------------------------]  20%
  2631/12870 [=================>---------------------------------------------------------------------]  20%
  2632/12870 [=================>---------------------------------------------------------------------]  20%
  2633/12870 [=================>---------------------------------------------------------------------]  20%
  2634/12870 [=================>---------------------------------------------------------------------]  20%
  2635/12870 [=================>---------------------------------------------------------------------]  20%
  2636/12870 [=================>---------------------------------------------------------------------]  20%
  2637/12870 [=================>---------------------------------------------------------------------]  20%
  2638/12870 [=================>---------------------------------------------------------------------]  20%
  2639/12870 [=================>---------------------------------------------------------------------]  21%
  2640/12870 [=================>---------------------------------------------------------------------]  21%
  2641/12870 [=================>---------------------------------------------------------------------]  21%
  2642/12870 [=================>---------------------------------------------------------------------]  21%
  2643/12870 [=================>---------------------------------------------------------------------]  21%
  2644/12870 [=================>---------------------------------------------------------------------]  21%
  2645/12870 [=================>---------------------------------------------------------------------]  21%
  2646/12870 [=================>---------------------------------------------------------------------]  21%
  2647/12870 [=================>---------------------------------------------------------------------]  21%
  2648/12870 [=================>---------------------------------------------------------------------]  21%
  2649/12870 [=================>---------------------------------------------------------------------]  21%
  2650/12870 [=================>---------------------------------------------------------------------]  21%
  2651/12870 [=================>---------------------------------------------------------------------]  21%
  2652/12870 [=================>---------------------------------------------------------------------]  21%
  2653/12870 [=================>---------------------------------------------------------------------]  21%
  2654/12870 [=================>---------------------------------------------------------------------]  21%
  2655/12870 [=================>---------------------------------------------------------------------]  21%
  2656/12870 [=================>---------------------------------------------------------------------]  21%
  2657/12870 [=================>---------------------------------------------------------------------]  21%
  2658/12870 [=================>---------------------------------------------------------------------]  21%
  2659/12870 [=================>---------------------------------------------------------------------]  21%
  2660/12870 [=================>---------------------------------------------------------------------]  21%
  2661/12870 [=================>---------------------------------------------------------------------]  21%
  2662/12870 [=================>---------------------------------------------------------------------]  21%
  2663/12870 [=================>---------------------------------------------------------------------]  21%
  2664/12870 [=================>---------------------------------------------------------------------]  21%
  2665/12870 [=================>---------------------------------------------------------------------]  21%
  2666/12870 [=================>---------------------------------------------------------------------]  21%
  2667/12870 [=================>---------------------------------------------------------------------]  21%
  2668/12870 [=================>---------------------------------------------------------------------]  21%
  2669/12870 [=================>---------------------------------------------------------------------]  21%
  2670/12870 [=================>---------------------------------------------------------------------]  21%
  2671/12870 [=================>---------------------------------------------------------------------]  21%
  2672/12870 [=================>---------------------------------------------------------------------]  21%
  2673/12870 [=================>---------------------------------------------------------------------]  21%
  2674/12870 [=================>---------------------------------------------------------------------]  21%
  2675/12870 [=================>---------------------------------------------------------------------]  21%
  2676/12870 [=================>---------------------------------------------------------------------]  21%
  2677/12870 [=================>---------------------------------------------------------------------]  21%
  2678/12870 [=================>---------------------------------------------------------------------]  21%
  2679/12870 [=================>---------------------------------------------------------------------]  21%
  2680/12870 [=================>---------------------------------------------------------------------]  21%
  2681/12870 [=================>---------------------------------------------------------------------]  21%
  2682/12870 [=================>---------------------------------------------------------------------]  21%
  2683/12870 [=================>---------------------------------------------------------------------]  21%
  2684/12870 [=================>---------------------------------------------------------------------]  21%
  2685/12870 [=================>---------------------------------------------------------------------]  21%
  2686/12870 [=================>---------------------------------------------------------------------]  21%
  2687/12870 [=================>---------------------------------------------------------------------]  21%
  2688/12870 [=================>---------------------------------------------------------------------]  21%
  2689/12870 [=================>---------------------------------------------------------------------]  21%
  2690/12870 [=================>---------------------------------------------------------------------]  21%
  2691/12870 [=================>---------------------------------------------------------------------]  21%
  2692/12870 [=================>---------------------------------------------------------------------]  21%
  2693/12870 [=================>---------------------------------------------------------------------]  21%
  2694/12870 [=================>---------------------------------------------------------------------]  21%
  2695/12870 [=================>---------------------------------------------------------------------]  21%
  2696/12870 [=================>---------------------------------------------------------------------]  21%
  2697/12870 [=================>---------------------------------------------------------------------]  21%
  2698/12870 [=================>---------------------------------------------------------------------]  21%
  2699/12870 [=================>---------------------------------------------------------------------]  21%
  2700/12870 [=================>---------------------------------------------------------------------]  21%
  2701/12870 [=================>---------------------------------------------------------------------]  21%
  2702/12870 [=================>---------------------------------------------------------------------]  21%
  2703/12870 [=================>---------------------------------------------------------------------]  21%
  2704/12870 [=================>---------------------------------------------------------------------]  21%
  2705/12870 [=================>---------------------------------------------------------------------]  21%
  2706/12870 [=================>---------------------------------------------------------------------]  21%
  2707/12870 [=================>---------------------------------------------------------------------]  21%
  2708/12870 [=================>---------------------------------------------------------------------]  21%
  2709/12870 [=================>---------------------------------------------------------------------]  21%
  2710/12870 [=================>---------------------------------------------------------------------]  21%
  2711/12870 [=================>---------------------------------------------------------------------]  21%
  2712/12870 [=================>---------------------------------------------------------------------]  21%
  2713/12870 [=================>---------------------------------------------------------------------]  21%
  2714/12870 [=================>---------------------------------------------------------------------]  21%
  2715/12870 [=================>---------------------------------------------------------------------]  21%
  2716/12870 [=================>---------------------------------------------------------------------]  21%
  2717/12870 [=================>---------------------------------------------------------------------]  21%
  2718/12870 [=================>---------------------------------------------------------------------]  21%
  2719/12870 [=================>---------------------------------------------------------------------]  21%
  2720/12870 [=================>---------------------------------------------------------------------]  21%
  2721/12870 [=================>---------------------------------------------------------------------]  21%
  2722/12870 [=================>---------------------------------------------------------------------]  21%
  2723/12870 [=================>---------------------------------------------------------------------]  21%
  2724/12870 [=================>---------------------------------------------------------------------]  21%
  2725/12870 [=================>---------------------------------------------------------------------]  21%
  2726/12870 [=================>---------------------------------------------------------------------]  21%
  2727/12870 [=================>---------------------------------------------------------------------]  21%
  2728/12870 [=================>---------------------------------------------------------------------]  21%
  2729/12870 [=================>---------------------------------------------------------------------]  21%
  2730/12870 [=================>---------------------------------------------------------------------]  21%
  2731/12870 [=================>---------------------------------------------------------------------]  21%
  2732/12870 [=================>---------------------------------------------------------------------]  21%
  2733/12870 [=================>---------------------------------------------------------------------]  21%
  2734/12870 [=================>---------------------------------------------------------------------]  21%
  2735/12870 [=================>---------------------------------------------------------------------]  21%
  2736/12870 [=================>---------------------------------------------------------------------]  21%
  2737/12870 [==================>--------------------------------------------------------------------]  21%
  2738/12870 [==================>--------------------------------------------------------------------]  21%
  2739/12870 [==================>--------------------------------------------------------------------]  21%
  2740/12870 [==================>--------------------------------------------------------------------]  21%
  2741/12870 [==================>--------------------------------------------------------------------]  21%
  2742/12870 [==================>--------------------------------------------------------------------]  21%
  2743/12870 [==================>--------------------------------------------------------------------]  21%
  2744/12870 [==================>--------------------------------------------------------------------]  21%
  2745/12870 [==================>--------------------------------------------------------------------]  21%
  2746/12870 [==================>--------------------------------------------------------------------]  21%
  2747/12870 [==================>--------------------------------------------------------------------]  21%
  2748/12870 [==================>--------------------------------------------------------------------]  21%
  2749/12870 [==================>--------------------------------------------------------------------]  21%
  2750/12870 [==================>--------------------------------------------------------------------]  21%
  2751/12870 [==================>--------------------------------------------------------------------]  21%
  2752/12870 [==================>--------------------------------------------------------------------]  21%
  2753/12870 [==================>--------------------------------------------------------------------]  21%
  2754/12870 [==================>--------------------------------------------------------------------]  21%
  2755/12870 [==================>--------------------------------------------------------------------]  21%
  2756/12870 [==================>--------------------------------------------------------------------]  21%
  2757/12870 [==================>--------------------------------------------------------------------]  21%
  2758/12870 [==================>--------------------------------------------------------------------]  21%
  2759/12870 [==================>--------------------------------------------------------------------]  21%
  2760/12870 [==================>--------------------------------------------------------------------]  21%
  2761/12870 [==================>--------------------------------------------------------------------]  21%
  2762/12870 [==================>--------------------------------------------------------------------]  21%
  2763/12870 [==================>--------------------------------------------------------------------]  21%
  2764/12870 [==================>--------------------------------------------------------------------]  21%
  2765/12870 [==================>--------------------------------------------------------------------]  21%
  2766/12870 [==================>--------------------------------------------------------------------]  21%
  2767/12870 [==================>--------------------------------------------------------------------]  21%
  2768/12870 [==================>--------------------------------------------------------------------]  22%
  2769/12870 [==================>--------------------------------------------------------------------]  22%
  2770/12870 [==================>--------------------------------------------------------------------]  22%
  2771/12870 [==================>--------------------------------------------------------------------]  22%
  2772/12870 [==================>--------------------------------------------------------------------]  22%
  2773/12870 [==================>--------------------------------------------------------------------]  22%
  2774/12870 [==================>--------------------------------------------------------------------]  22%
  2775/12870 [==================>--------------------------------------------------------------------]  22%
  2776/12870 [==================>--------------------------------------------------------------------]  22%
  2777/12870 [==================>--------------------------------------------------------------------]  22%
  2778/12870 [==================>--------------------------------------------------------------------]  22%
  2779/12870 [==================>--------------------------------------------------------------------]  22%
  2780/12870 [==================>--------------------------------------------------------------------]  22%
  2781/12870 [==================>--------------------------------------------------------------------]  22%
  2782/12870 [==================>--------------------------------------------------------------------]  22%
  2783/12870 [==================>--------------------------------------------------------------------]  22%
  2784/12870 [==================>--------------------------------------------------------------------]  22%
  2785/12870 [==================>--------------------------------------------------------------------]  22%
  2786/12870 [==================>--------------------------------------------------------------------]  22%
  2787/12870 [==================>--------------------------------------------------------------------]  22%
  2788/12870 [==================>--------------------------------------------------------------------]  22%
  2789/12870 [==================>--------------------------------------------------------------------]  22%
  2790/12870 [==================>--------------------------------------------------------------------]  22%
  2791/12870 [==================>--------------------------------------------------------------------]  22%
  2792/12870 [==================>--------------------------------------------------------------------]  22%
  2793/12870 [==================>--------------------------------------------------------------------]  22%
  2794/12870 [==================>--------------------------------------------------------------------]  22%
  2795/12870 [==================>--------------------------------------------------------------------]  22%
  2796/12870 [==================>--------------------------------------------------------------------]  22%
  2797/12870 [==================>--------------------------------------------------------------------]  22%
  2798/12870 [==================>--------------------------------------------------------------------]  22%
  2799/12870 [==================>--------------------------------------------------------------------]  22%
  2800/12870 [==================>--------------------------------------------------------------------]  22%
  2801/12870 [==================>--------------------------------------------------------------------]  22%
  2802/12870 [==================>--------------------------------------------------------------------]  22%
  2803/12870 [==================>--------------------------------------------------------------------]  22%
  2804/12870 [==================>--------------------------------------------------------------------]  22%
  2805/12870 [==================>--------------------------------------------------------------------]  22%
  2806/12870 [==================>--------------------------------------------------------------------]  22%
  2807/12870 [==================>--------------------------------------------------------------------]  22%
  2808/12870 [==================>--------------------------------------------------------------------]  22%
  2809/12870 [==================>--------------------------------------------------------------------]  22%
  2810/12870 [==================>--------------------------------------------------------------------]  22%
  2811/12870 [==================>--------------------------------------------------------------------]  22%
  2812/12870 [==================>--------------------------------------------------------------------]  22%
  2813/12870 [==================>--------------------------------------------------------------------]  22%
  2814/12870 [==================>--------------------------------------------------------------------]  22%
  2815/12870 [==================>--------------------------------------------------------------------]  22%
  2816/12870 [==================>--------------------------------------------------------------------]  22%
  2817/12870 [==================>--------------------------------------------------------------------]  22%
  2818/12870 [==================>--------------------------------------------------------------------]  22%
  2819/12870 [==================>--------------------------------------------------------------------]  22%
  2820/12870 [==================>--------------------------------------------------------------------]  22%
  2821/12870 [==================>--------------------------------------------------------------------]  22%
  2822/12870 [==================>--------------------------------------------------------------------]  22%
  2823/12870 [==================>--------------------------------------------------------------------]  22%
  2824/12870 [==================>--------------------------------------------------------------------]  22%
  2825/12870 [==================>--------------------------------------------------------------------]  22%
  2826/12870 [==================>--------------------------------------------------------------------]  22%
  2827/12870 [==================>--------------------------------------------------------------------]  22%
  2828/12870 [==================>--------------------------------------------------------------------]  22%
  2829/12870 [==================>--------------------------------------------------------------------]  22%
  2830/12870 [==================>--------------------------------------------------------------------]  22%
  2831/12870 [==================>--------------------------------------------------------------------]  22%
  2832/12870 [==================>--------------------------------------------------------------------]  22%
  2833/12870 [==================>--------------------------------------------------------------------]  22%
  2834/12870 [==================>--------------------------------------------------------------------]  22%
  2835/12870 [==================>--------------------------------------------------------------------]  22%
  2836/12870 [==================>--------------------------------------------------------------------]  22%
  2837/12870 [==================>--------------------------------------------------------------------]  22%
  2838/12870 [==================>--------------------------------------------------------------------]  22%
  2839/12870 [==================>--------------------------------------------------------------------]  22%
  2840/12870 [==================>--------------------------------------------------------------------]  22%
  2841/12870 [==================>--------------------------------------------------------------------]  22%
  2842/12870 [==================>--------------------------------------------------------------------]  22%
  2843/12870 [==================>--------------------------------------------------------------------]  22%
  2844/12870 [==================>--------------------------------------------------------------------]  22%
  2845/12870 [==================>--------------------------------------------------------------------]  22%
  2846/12870 [==================>--------------------------------------------------------------------]  22%
  2847/12870 [==================>--------------------------------------------------------------------]  22%
  2848/12870 [==================>--------------------------------------------------------------------]  22%
  2849/12870 [==================>--------------------------------------------------------------------]  22%
  2850/12870 [==================>--------------------------------------------------------------------]  22%
  2851/12870 [==================>--------------------------------------------------------------------]  22%
  2852/12870 [==================>--------------------------------------------------------------------]  22%
  2853/12870 [==================>--------------------------------------------------------------------]  22%
  2854/12870 [==================>--------------------------------------------------------------------]  22%
  2855/12870 [==================>--------------------------------------------------------------------]  22%
  2856/12870 [==================>--------------------------------------------------------------------]  22%
  2857/12870 [==================>--------------------------------------------------------------------]  22%
  2858/12870 [==================>--------------------------------------------------------------------]  22%
  2859/12870 [==================>--------------------------------------------------------------------]  22%
  2860/12870 [==================>--------------------------------------------------------------------]  22%
  2861/12870 [==================>--------------------------------------------------------------------]  22%
  2862/12870 [==================>--------------------------------------------------------------------]  22%
  2863/12870 [==================>--------------------------------------------------------------------]  22%
  2864/12870 [==================>--------------------------------------------------------------------]  22%
  2865/12870 [==================>--------------------------------------------------------------------]  22%
  2866/12870 [==================>--------------------------------------------------------------------]  22%
  2867/12870 [==================>--------------------------------------------------------------------]  22%
  2868/12870 [==================>--------------------------------------------------------------------]  22%
  2869/12870 [==================>--------------------------------------------------------------------]  22%
  2870/12870 [==================>--------------------------------------------------------------------]  22%
  2871/12870 [==================>--------------------------------------------------------------------]  22%
  2872/12870 [==================>--------------------------------------------------------------------]  22%
  2873/12870 [==================>--------------------------------------------------------------------]  22%
  2874/12870 [==================>--------------------------------------------------------------------]  22%
  2875/12870 [==================>--------------------------------------------------------------------]  22%
  2876/12870 [==================>--------------------------------------------------------------------]  22%
  2877/12870 [==================>--------------------------------------------------------------------]  22%
  2878/12870 [==================>--------------------------------------------------------------------]  22%
  2879/12870 [==================>--------------------------------------------------------------------]  22%
  2880/12870 [==================>--------------------------------------------------------------------]  22%
  2881/12870 [==================>--------------------------------------------------------------------]  22%
  2882/12870 [==================>--------------------------------------------------------------------]  22%
  2883/12870 [==================>--------------------------------------------------------------------]  22%
  2884/12870 [==================>--------------------------------------------------------------------]  22%
  2885/12870 [===================>-------------------------------------------------------------------]  22%
  2886/12870 [===================>-------------------------------------------------------------------]  22%
  2887/12870 [===================>-------------------------------------------------------------------]  22%
  2888/12870 [===================>-------------------------------------------------------------------]  22%
  2889/12870 [===================>-------------------------------------------------------------------]  22%
  2890/12870 [===================>-------------------------------------------------------------------]  22%
  2891/12870 [===================>-------------------------------------------------------------------]  22%
  2892/12870 [===================>-------------------------------------------------------------------]  22%
  2893/12870 [===================>-------------------------------------------------------------------]  22%
  2894/12870 [===================>-------------------------------------------------------------------]  22%
  2895/12870 [===================>-------------------------------------------------------------------]  22%
  2896/12870 [===================>-------------------------------------------------------------------]  23%
  2897/12870 [===================>-------------------------------------------------------------------]  23%
  2898/12870 [===================>-------------------------------------------------------------------]  23%
  2899/12870 [===================>-------------------------------------------------------------------]  23%
  2900/12870 [===================>-------------------------------------------------------------------]  23%
  2901/12870 [===================>-------------------------------------------------------------------]  23%
  2902/12870 [===================>-------------------------------------------------------------------]  23%
  2903/12870 [===================>-------------------------------------------------------------------]  23%
  2904/12870 [===================>-------------------------------------------------------------------]  23%
  2905/12870 [===================>-------------------------------------------------------------------]  23%
  2906/12870 [===================>-------------------------------------------------------------------]  23%
  2907/12870 [===================>-------------------------------------------------------------------]  23%
  2908/12870 [===================>-------------------------------------------------------------------]  23%
  2909/12870 [===================>-------------------------------------------------------------------]  23%
  2910/12870 [===================>-------------------------------------------------------------------]  23%
  2911/12870 [===================>-------------------------------------------------------------------]  23%
  2912/12870 [===================>-------------------------------------------------------------------]  23%
  2913/12870 [===================>-------------------------------------------------------------------]  23%
  2914/12870 [===================>-------------------------------------------------------------------]  23%
  2915/12870 [===================>-------------------------------------------------------------------]  23%
  2916/12870 [===================>-------------------------------------------------------------------]  23%
  2917/12870 [===================>-------------------------------------------------------------------]  23%
  2918/12870 [===================>-------------------------------------------------------------------]  23%
  2919/12870 [===================>-------------------------------------------------------------------]  23%
  2920/12870 [===================>-------------------------------------------------------------------]  23%
  2921/12870 [===================>-------------------------------------------------------------------]  23%
  2922/12870 [===================>-------------------------------------------------------------------]  23%
  2923/12870 [===================>-------------------------------------------------------------------]  23%
  2924/12870 [===================>-------------------------------------------------------------------]  23%
  2925/12870 [===================>-------------------------------------------------------------------]  23%
  2926/12870 [===================>-------------------------------------------------------------------]  23%
  2927/12870 [===================>-------------------------------------------------------------------]  23%
  2928/12870 [===================>-------------------------------------------------------------------]  23%
  2929/12870 [===================>-------------------------------------------------------------------]  23%
  2930/12870 [===================>-------------------------------------------------------------------]  23%
  2931/12870 [===================>-------------------------------------------------------------------]  23%
  2932/12870 [===================>-------------------------------------------------------------------]  23%
  2933/12870 [===================>-------------------------------------------------------------------]  23%
  2934/12870 [===================>-------------------------------------------------------------------]  23%
  2935/12870 [===================>-------------------------------------------------------------------]  23%
  2936/12870 [===================>-------------------------------------------------------------------]  23%
  2937/12870 [===================>-------------------------------------------------------------------]  23%
  2938/12870 [===================>-------------------------------------------------------------------]  23%
  2939/12870 [===================>-------------------------------------------------------------------]  23%
  2940/12870 [===================>-------------------------------------------------------------------]  23%
  2941/12870 [===================>-------------------------------------------------------------------]  23%
  2942/12870 [===================>-------------------------------------------------------------------]  23%
  2943/12870 [===================>-------------------------------------------------------------------]  23%
  2944/12870 [===================>-------------------------------------------------------------------]  23%
  2945/12870 [===================>-------------------------------------------------------------------]  23%
  2946/12870 [===================>-------------------------------------------------------------------]  23%
  2947/12870 [===================>-------------------------------------------------------------------]  23%
  2948/12870 [===================>-------------------------------------------------------------------]  23%
  2949/12870 [===================>-------------------------------------------------------------------]  23%
  2950/12870 [===================>-------------------------------------------------------------------]  23%
  2951/12870 [===================>-------------------------------------------------------------------]  23%
  2952/12870 [===================>-------------------------------------------------------------------]  23%
  2953/12870 [===================>-------------------------------------------------------------------]  23%
  2954/12870 [===================>-------------------------------------------------------------------]  23%
  2955/12870 [===================>-------------------------------------------------------------------]  23%
  2956/12870 [===================>-------------------------------------------------------------------]  23%
  2957/12870 [===================>-------------------------------------------------------------------]  23%
  2958/12870 [===================>-------------------------------------------------------------------]  23%
  2959/12870 [===================>-------------------------------------------------------------------]  23%
  2960/12870 [===================>-------------------------------------------------------------------]  23%
  2961/12870 [===================>-------------------------------------------------------------------]  23%
  2962/12870 [===================>-------------------------------------------------------------------]  23%
  2963/12870 [===================>-------------------------------------------------------------------]  23%
  2964/12870 [===================>-------------------------------------------------------------------]  23%
  2965/12870 [===================>-------------------------------------------------------------------]  23%
  2966/12870 [===================>-------------------------------------------------------------------]  23%
  2967/12870 [===================>-------------------------------------------------------------------]  23%
  2968/12870 [===================>-------------------------------------------------------------------]  23%
  2969/12870 [===================>-------------------------------------------------------------------]  23%
  2970/12870 [===================>-------------------------------------------------------------------]  23%
  2971/12870 [===================>-------------------------------------------------------------------]  23%
  2972/12870 [===================>-------------------------------------------------------------------]  23%
  2973/12870 [===================>-------------------------------------------------------------------]  23%
  2974/12870 [===================>-------------------------------------------------------------------]  23%
  2975/12870 [===================>-------------------------------------------------------------------]  23%
  2976/12870 [===================>-------------------------------------------------------------------]  23%
  2977/12870 [===================>-------------------------------------------------------------------]  23%
  2978/12870 [===================>-------------------------------------------------------------------]  23%
  2979/12870 [===================>-------------------------------------------------------------------]  23%
  2980/12870 [===================>-------------------------------------------------------------------]  23%
  2981/12870 [===================>-------------------------------------------------------------------]  23%
  2982/12870 [===================>-------------------------------------------------------------------]  23%
  2983/12870 [===================>-------------------------------------------------------------------]  23%
  2984/12870 [===================>-------------------------------------------------------------------]  23%
  2985/12870 [===================>-------------------------------------------------------------------]  23%
  2986/12870 [===================>-------------------------------------------------------------------]  23%
  2987/12870 [===================>-------------------------------------------------------------------]  23%
  2988/12870 [===================>-------------------------------------------------------------------]  23%
  2989/12870 [===================>-------------------------------------------------------------------]  23%
  2990/12870 [===================>-------------------------------------------------------------------]  23%
  2991/12870 [===================>-------------------------------------------------------------------]  23%
  2992/12870 [===================>-------------------------------------------------------------------]  23%
  2993/12870 [===================>-------------------------------------------------------------------]  23%
  2994/12870 [===================>-------------------------------------------------------------------]  23%
  2995/12870 [===================>-------------------------------------------------------------------]  23%
  2996/12870 [===================>-------------------------------------------------------------------]  23%
  2997/12870 [===================>-------------------------------------------------------------------]  23%
  2998/12870 [===================>-------------------------------------------------------------------]  23%
  2999/12870 [===================>-------------------------------------------------------------------]  23%
  3000/12870 [===================>-------------------------------------------------------------------]  23%
  3001/12870 [===================>-------------------------------------------------------------------]  23%
  3002/12870 [===================>-------------------------------------------------------------------]  23%
  3003/12870 [===================>-------------------------------------------------------------------]  23%
  3004/12870 [===================>-------------------------------------------------------------------]  23%
  3005/12870 [===================>-------------------------------------------------------------------]  23%
  3006/12870 [===================>-------------------------------------------------------------------]  23%
  3007/12870 [===================>-------------------------------------------------------------------]  23%
  3008/12870 [===================>-------------------------------------------------------------------]  23%
  3009/12870 [===================>-------------------------------------------------------------------]  23%
  3010/12870 [===================>-------------------------------------------------------------------]  23%
  3011/12870 [===================>-------------------------------------------------------------------]  23%
  3012/12870 [===================>-------------------------------------------------------------------]  23%
  3013/12870 [===================>-------------------------------------------------------------------]  23%
  3014/12870 [===================>-------------------------------------------------------------------]  23%
  3015/12870 [===================>-------------------------------------------------------------------]  23%
  3016/12870 [===================>-------------------------------------------------------------------]  23%
  3017/12870 [===================>-------------------------------------------------------------------]  23%
  3018/12870 [===================>-------------------------------------------------------------------]  23%
  3019/12870 [===================>-------------------------------------------------------------------]  23%
  3020/12870 [===================>-------------------------------------------------------------------]  23%
  3021/12870 [===================>-------------------------------------------------------------------]  23%
  3022/12870 [===================>-------------------------------------------------------------------]  23%
  3023/12870 [===================>-------------------------------------------------------------------]  23%
  3024/12870 [===================>-------------------------------------------------------------------]  23%
  3025/12870 [===================>-------------------------------------------------------------------]  24%
  3026/12870 [===================>-------------------------------------------------------------------]  24%
  3027/12870 [===================>-------------------------------------------------------------------]  24%
  3028/12870 [===================>-------------------------------------------------------------------]  24%
  3029/12870 [===================>-------------------------------------------------------------------]  24%
  3030/12870 [===================>-------------------------------------------------------------------]  24%
  3031/12870 [===================>-------------------------------------------------------------------]  24%
  3032/12870 [===================>-------------------------------------------------------------------]  24%
  3033/12870 [====================>------------------------------------------------------------------]  24%
  3034/12870 [====================>------------------------------------------------------------------]  24%
  3035/12870 [====================>------------------------------------------------------------------]  24%
  3036/12870 [====================>------------------------------------------------------------------]  24%
  3037/12870 [====================>------------------------------------------------------------------]  24%
  3038/12870 [====================>------------------------------------------------------------------]  24%
  3039/12870 [====================>------------------------------------------------------------------]  24%
  3040/12870 [====================>------------------------------------------------------------------]  24%
  3041/12870 [====================>------------------------------------------------------------------]  24%
  3042/12870 [====================>------------------------------------------------------------------]  24%
  3043/12870 [====================>------------------------------------------------------------------]  24%
  3044/12870 [====================>------------------------------------------------------------------]  24%
  3045/12870 [====================>------------------------------------------------------------------]  24%
  3046/12870 [====================>------------------------------------------------------------------]  24%
  3047/12870 [====================>------------------------------------------------------------------]  24%
  3048/12870 [====================>------------------------------------------------------------------]  24%
  3049/12870 [====================>------------------------------------------------------------------]  24%
  3050/12870 [====================>------------------------------------------------------------------]  24%
  3051/12870 [====================>------------------------------------------------------------------]  24%
  3052/12870 [====================>------------------------------------------------------------------]  24%
  3053/12870 [====================>------------------------------------------------------------------]  24%
  3054/12870 [====================>------------------------------------------------------------------]  24%
  3055/12870 [====================>------------------------------------------------------------------]  24%
  3056/12870 [====================>------------------------------------------------------------------]  24%
  3057/12870 [====================>------------------------------------------------------------------]  24%
  3058/12870 [====================>------------------------------------------------------------------]  24%
  3059/12870 [====================>------------------------------------------------------------------]  24%
  3060/12870 [====================>------------------------------------------------------------------]  24%
  3061/12870 [====================>------------------------------------------------------------------]  24%
  3062/12870 [====================>------------------------------------------------------------------]  24%
  3063/12870 [====================>------------------------------------------------------------------]  24%
  3064/12870 [====================>------------------------------------------------------------------]  24%
  3065/12870 [====================>------------------------------------------------------------------]  24%
  3066/12870 [====================>------------------------------------------------------------------]  24%
  3067/12870 [====================>------------------------------------------------------------------]  24%
  3068/12870 [====================>------------------------------------------------------------------]  24%
  3069/12870 [====================>------------------------------------------------------------------]  24%
  3070/12870 [====================>------------------------------------------------------------------]  24%
  3071/12870 [====================>------------------------------------------------------------------]  24%
  3072/12870 [====================>------------------------------------------------------------------]  24%
  3073/12870 [====================>------------------------------------------------------------------]  24%
  3074/12870 [====================>------------------------------------------------------------------]  24%
  3075/12870 [====================>------------------------------------------------------------------]  24%
  3076/12870 [====================>------------------------------------------------------------------]  24%
  3077/12870 [====================>------------------------------------------------------------------]  24%
  3078/12870 [====================>------------------------------------------------------------------]  24%
  3079/12870 [====================>------------------------------------------------------------------]  24%
  3080/12870 [====================>------------------------------------------------------------------]  24%
  3081/12870 [====================>------------------------------------------------------------------]  24%
  3082/12870 [====================>------------------------------------------------------------------]  24%
  3083/12870 [====================>------------------------------------------------------------------]  24%
  3084/12870 [====================>------------------------------------------------------------------]  24%
  3085/12870 [====================>------------------------------------------------------------------]  24%
  3086/12870 [====================>------------------------------------------------------------------]  24%
  3087/12870 [====================>------------------------------------------------------------------]  24%
  3088/12870 [====================>------------------------------------------------------------------]  24%
  3089/12870 [====================>------------------------------------------------------------------]  24%
  3090/12870 [====================>------------------------------------------------------------------]  24%
  3091/12870 [====================>------------------------------------------------------------------]  24%
  3092/12870 [====================>------------------------------------------------------------------]  24%
  3093/12870 [====================>------------------------------------------------------------------]  24%
  3094/12870 [====================>------------------------------------------------------------------]  24%
  3095/12870 [====================>------------------------------------------------------------------]  24%
  3096/12870 [====================>------------------------------------------------------------------]  24%
  3097/12870 [====================>------------------------------------------------------------------]  24%
  3098/12870 [====================>------------------------------------------------------------------]  24%
  3099/12870 [====================>------------------------------------------------------------------]  24%
  3100/12870 [====================>------------------------------------------------------------------]  24%
  3101/12870 [====================>------------------------------------------------------------------]  24%
  3102/12870 [====================>------------------------------------------------------------------]  24%
  3103/12870 [====================>------------------------------------------------------------------]  24%
  3104/12870 [====================>------------------------------------------------------------------]  24%
  3105/12870 [====================>------------------------------------------------------------------]  24%
  3106/12870 [====================>------------------------------------------------------------------]  24%
  3107/12870 [====================>------------------------------------------------------------------]  24%
  3108/12870 [====================>------------------------------------------------------------------]  24%
  3109/12870 [====================>------------------------------------------------------------------]  24%
  3110/12870 [====================>------------------------------------------------------------------]  24%
  3111/12870 [====================>------------------------------------------------------------------]  24%
  3112/12870 [====================>------------------------------------------------------------------]  24%
  3113/12870 [====================>------------------------------------------------------------------]  24%
  3114/12870 [====================>------------------------------------------------------------------]  24%
  3115/12870 [====================>------------------------------------------------------------------]  24%
  3116/12870 [====================>------------------------------------------------------------------]  24%
  3117/12870 [====================>------------------------------------------------------------------]  24%
  3118/12870 [====================>------------------------------------------------------------------]  24%
  3119/12870 [====================>------------------------------------------------------------------]  24%
  3120/12870 [====================>------------------------------------------------------------------]  24%
  3121/12870 [====================>------------------------------------------------------------------]  24%
  3122/12870 [====================>------------------------------------------------------------------]  24%
  3123/12870 [====================>------------------------------------------------------------------]  24%
  3124/12870 [====================>------------------------------------------------------------------]  24%
  3125/12870 [====================>------------------------------------------------------------------]  24%
  3126/12870 [====================>------------------------------------------------------------------]  24%
  3127/12870 [====================>------------------------------------------------------------------]  24%
  3128/12870 [====================>------------------------------------------------------------------]  24%
  3129/12870 [====================>------------------------------------------------------------------]  24%
  3130/12870 [====================>------------------------------------------------------------------]  24%
  3131/12870 [====================>------------------------------------------------------------------]  24%
  3132/12870 [====================>------------------------------------------------------------------]  24%
  3133/12870 [====================>------------------------------------------------------------------]  24%
  3134/12870 [====================>------------------------------------------------------------------]  24%
  3135/12870 [====================>------------------------------------------------------------------]  24%
  3136/12870 [====================>------------------------------------------------------------------]  24%
  3137/12870 [====================>------------------------------------------------------------------]  24%
  3138/12870 [====================>------------------------------------------------------------------]  24%
  3139/12870 [====================>------------------------------------------------------------------]  24%
  3140/12870 [====================>------------------------------------------------------------------]  24%
  3141/12870 [====================>------------------------------------------------------------------]  24%
  3142/12870 [====================>------------------------------------------------------------------]  24%
  3143/12870 [====================>------------------------------------------------------------------]  24%
  3144/12870 [====================>------------------------------------------------------------------]  24%
  3145/12870 [====================>------------------------------------------------------------------]  24%
  3146/12870 [====================>------------------------------------------------------------------]  24%
  3147/12870 [====================>------------------------------------------------------------------]  24%
  3148/12870 [====================>------------------------------------------------------------------]  24%
  3149/12870 [====================>------------------------------------------------------------------]  24%
  3150/12870 [====================>------------------------------------------------------------------]  24%
  3151/12870 [====================>------------------------------------------------------------------]  24%
  3152/12870 [====================>------------------------------------------------------------------]  24%
  3153/12870 [====================>------------------------------------------------------------------]  24%
  3154/12870 [====================>------------------------------------------------------------------]  25%
  3155/12870 [====================>------------------------------------------------------------------]  25%
  3156/12870 [====================>------------------------------------------------------------------]  25%
  3157/12870 [====================>------------------------------------------------------------------]  25%
  3158/12870 [====================>------------------------------------------------------------------]  25%
  3159/12870 [====================>------------------------------------------------------------------]  25%
  3160/12870 [====================>------------------------------------------------------------------]  25%
  3161/12870 [====================>------------------------------------------------------------------]  25%
  3162/12870 [====================>------------------------------------------------------------------]  25%
  3163/12870 [====================>------------------------------------------------------------------]  25%
  3164/12870 [====================>------------------------------------------------------------------]  25%
  3165/12870 [====================>------------------------------------------------------------------]  25%
  3166/12870 [====================>------------------------------------------------------------------]  25%
  3167/12870 [====================>------------------------------------------------------------------]  25%
  3168/12870 [====================>------------------------------------------------------------------]  25%
  3169/12870 [====================>------------------------------------------------------------------]  25%
  3170/12870 [====================>------------------------------------------------------------------]  25%
  3171/12870 [====================>------------------------------------------------------------------]  25%
  3172/12870 [====================>------------------------------------------------------------------]  25%
  3173/12870 [====================>------------------------------------------------------------------]  25%
  3174/12870 [====================>------------------------------------------------------------------]  25%
  3175/12870 [====================>------------------------------------------------------------------]  25%
  3176/12870 [====================>------------------------------------------------------------------]  25%
  3177/12870 [====================>------------------------------------------------------------------]  25%
  3178/12870 [====================>------------------------------------------------------------------]  25%
  3179/12870 [====================>------------------------------------------------------------------]  25%
  3180/12870 [====================>------------------------------------------------------------------]  25%
  3181/12870 [=====================>-----------------------------------------------------------------]  25%
  3182/12870 [=====================>-----------------------------------------------------------------]  25%
  3183/12870 [=====================>-----------------------------------------------------------------]  25%
  3184/12870 [=====================>-----------------------------------------------------------------]  25%
  3185/12870 [=====================>-----------------------------------------------------------------]  25%
  3186/12870 [=====================>-----------------------------------------------------------------]  25%
  3187/12870 [=====================>-----------------------------------------------------------------]  25%
  3188/12870 [=====================>-----------------------------------------------------------------]  25%
  3189/12870 [=====================>-----------------------------------------------------------------]  25%
  3190/12870 [=====================>-----------------------------------------------------------------]  25%
  3191/12870 [=====================>-----------------------------------------------------------------]  25%
  3192/12870 [=====================>-----------------------------------------------------------------]  25%
  3193/12870 [=====================>-----------------------------------------------------------------]  25%
  3194/12870 [=====================>-----------------------------------------------------------------]  25%
  3195/12870 [=====================>-----------------------------------------------------------------]  25%
  3196/12870 [=====================>-----------------------------------------------------------------]  25%
  3197/12870 [=====================>-----------------------------------------------------------------]  25%
  3198/12870 [=====================>-----------------------------------------------------------------]  25%
  3199/12870 [=====================>-----------------------------------------------------------------]  25%
  3200/12870 [=====================>-----------------------------------------------------------------]  25%
  3201/12870 [=====================>-----------------------------------------------------------------]  25%
  3202/12870 [=====================>-----------------------------------------------------------------]  25%
  3203/12870 [=====================>-----------------------------------------------------------------]  25%
  3204/12870 [=====================>-----------------------------------------------------------------]  25%
  3205/12870 [=====================>-----------------------------------------------------------------]  25%
  3206/12870 [=====================>-----------------------------------------------------------------]  25%
  3207/12870 [=====================>-----------------------------------------------------------------]  25%
  3208/12870 [=====================>-----------------------------------------------------------------]  25%
  3209/12870 [=====================>-----------------------------------------------------------------]  25%
  3210/12870 [=====================>-----------------------------------------------------------------]  25%
  3211/12870 [=====================>-----------------------------------------------------------------]  25%
  3212/12870 [=====================>-----------------------------------------------------------------]  25%
  3213/12870 [=====================>-----------------------------------------------------------------]  25%
  3214/12870 [=====================>-----------------------------------------------------------------]  25%
  3215/12870 [=====================>-----------------------------------------------------------------]  25%
  3216/12870 [=====================>-----------------------------------------------------------------]  25%
  3217/12870 [=====================>-----------------------------------------------------------------]  25%
  3218/12870 [=====================>-----------------------------------------------------------------]  25%
  3219/12870 [=====================>-----------------------------------------------------------------]  25%
  3220/12870 [=====================>-----------------------------------------------------------------]  25%
  3221/12870 [=====================>-----------------------------------------------------------------]  25%
  3222/12870 [=====================>-----------------------------------------------------------------]  25%
  3223/12870 [=====================>-----------------------------------------------------------------]  25%
  3224/12870 [=====================>-----------------------------------------------------------------]  25%
  3225/12870 [=====================>-----------------------------------------------------------------]  25%
  3226/12870 [=====================>-----------------------------------------------------------------]  25%
  3227/12870 [=====================>-----------------------------------------------------------------]  25%
  3228/12870 [=====================>-----------------------------------------------------------------]  25%
  3229/12870 [=====================>-----------------------------------------------------------------]  25%
  3230/12870 [=====================>-----------------------------------------------------------------]  25%
  3231/12870 [=====================>-----------------------------------------------------------------]  25%
  3232/12870 [=====================>-----------------------------------------------------------------]  25%
  3233/12870 [=====================>-----------------------------------------------------------------]  25%
  3234/12870 [=====================>-----------------------------------------------------------------]  25%
  3235/12870 [=====================>-----------------------------------------------------------------]  25%
  3236/12870 [=====================>-----------------------------------------------------------------]  25%
  3237/12870 [=====================>-----------------------------------------------------------------]  25%
  3238/12870 [=====================>-----------------------------------------------------------------]  25%
  3239/12870 [=====================>-----------------------------------------------------------------]  25%
  3240/12870 [=====================>-----------------------------------------------------------------]  25%
  3241/12870 [=====================>-----------------------------------------------------------------]  25%
  3242/12870 [=====================>-----------------------------------------------------------------]  25%
  3243/12870 [=====================>-----------------------------------------------------------------]  25%
  3244/12870 [=====================>-----------------------------------------------------------------]  25%
  3245/12870 [=====================>-----------------------------------------------------------------]  25%
  3246/12870 [=====================>-----------------------------------------------------------------]  25%
  3247/12870 [=====================>-----------------------------------------------------------------]  25%
  3248/12870 [=====================>-----------------------------------------------------------------]  25%
  3249/12870 [=====================>-----------------------------------------------------------------]  25%
  3250/12870 [=====================>-----------------------------------------------------------------]  25%
  3251/12870 [=====================>-----------------------------------------------------------------]  25%
  3252/12870 [=====================>-----------------------------------------------------------------]  25%
  3253/12870 [=====================>-----------------------------------------------------------------]  25%
  3254/12870 [=====================>-----------------------------------------------------------------]  25%
  3255/12870 [=====================>-----------------------------------------------------------------]  25%
  3256/12870 [=====================>-----------------------------------------------------------------]  25%
  3257/12870 [=====================>-----------------------------------------------------------------]  25%
  3258/12870 [=====================>-----------------------------------------------------------------]  25%
  3259/12870 [=====================>-----------------------------------------------------------------]  25%
  3260/12870 [=====================>-----------------------------------------------------------------]  25%
  3261/12870 [=====================>-----------------------------------------------------------------]  25%
  3262/12870 [=====================>-----------------------------------------------------------------]  25%
  3263/12870 [=====================>-----------------------------------------------------------------]  25%
  3264/12870 [=====================>-----------------------------------------------------------------]  25%
  3265/12870 [=====================>-----------------------------------------------------------------]  25%
  3266/12870 [=====================>-----------------------------------------------------------------]  25%
  3267/12870 [=====================>-----------------------------------------------------------------]  25%
  3268/12870 [=====================>-----------------------------------------------------------------]  25%
  3269/12870 [=====================>-----------------------------------------------------------------]  25%
  3270/12870 [=====================>-----------------------------------------------------------------]  25%
  3271/12870 [=====================>-----------------------------------------------------------------]  25%
  3272/12870 [=====================>-----------------------------------------------------------------]  25%
  3273/12870 [=====================>-----------------------------------------------------------------]  25%
  3274/12870 [=====================>-----------------------------------------------------------------]  25%
  3275/12870 [=====================>-----------------------------------------------------------------]  25%
  3276/12870 [=====================>-----------------------------------------------------------------]  25%
  3277/12870 [=====================>-----------------------------------------------------------------]  25%
  3278/12870 [=====================>-----------------------------------------------------------------]  25%
  3279/12870 [=====================>-----------------------------------------------------------------]  25%
  3280/12870 [=====================>-----------------------------------------------------------------]  25%
  3281/12870 [=====================>-----------------------------------------------------------------]  25%
  3282/12870 [=====================>-----------------------------------------------------------------]  26%
  3283/12870 [=====================>-----------------------------------------------------------------]  26%
  3284/12870 [=====================>-----------------------------------------------------------------]  26%
  3285/12870 [=====================>-----------------------------------------------------------------]  26%
  3286/12870 [=====================>-----------------------------------------------------------------]  26%
  3287/12870 [=====================>-----------------------------------------------------------------]  26%
  3288/12870 [=====================>-----------------------------------------------------------------]  26%
  3289/12870 [=====================>-----------------------------------------------------------------]  26%
  3290/12870 [=====================>-----------------------------------------------------------------]  26%
  3291/12870 [=====================>-----------------------------------------------------------------]  26%
  3292/12870 [=====================>-----------------------------------------------------------------]  26%
  3293/12870 [=====================>-----------------------------------------------------------------]  26%
  3294/12870 [=====================>-----------------------------------------------------------------]  26%
  3295/12870 [=====================>-----------------------------------------------------------------]  26%
  3296/12870 [=====================>-----------------------------------------------------------------]  26%
  3297/12870 [=====================>-----------------------------------------------------------------]  26%
  3298/12870 [=====================>-----------------------------------------------------------------]  26%
  3299/12870 [=====================>-----------------------------------------------------------------]  26%
  3300/12870 [=====================>-----------------------------------------------------------------]  26%
  3301/12870 [=====================>-----------------------------------------------------------------]  26%
  3302/12870 [=====================>-----------------------------------------------------------------]  26%
  3303/12870 [=====================>-----------------------------------------------------------------]  26%
  3304/12870 [=====================>-----------------------------------------------------------------]  26%
  3305/12870 [=====================>-----------------------------------------------------------------]  26%
  3306/12870 [=====================>-----------------------------------------------------------------]  26%
  3307/12870 [=====================>-----------------------------------------------------------------]  26%
  3308/12870 [=====================>-----------------------------------------------------------------]  26%
  3309/12870 [=====================>-----------------------------------------------------------------]  26%
  3310/12870 [=====================>-----------------------------------------------------------------]  26%
  3311/12870 [=====================>-----------------------------------------------------------------]  26%
  3312/12870 [=====================>-----------------------------------------------------------------]  26%
  3313/12870 [=====================>-----------------------------------------------------------------]  26%
  3314/12870 [=====================>-----------------------------------------------------------------]  26%
  3315/12870 [=====================>-----------------------------------------------------------------]  26%
  3316/12870 [=====================>-----------------------------------------------------------------]  26%
  3317/12870 [=====================>-----------------------------------------------------------------]  26%
  3318/12870 [=====================>-----------------------------------------------------------------]  26%
  3319/12870 [=====================>-----------------------------------------------------------------]  26%
  3320/12870 [=====================>-----------------------------------------------------------------]  26%
  3321/12870 [=====================>-----------------------------------------------------------------]  26%
  3322/12870 [=====================>-----------------------------------------------------------------]  26%
  3323/12870 [=====================>-----------------------------------------------------------------]  26%
  3324/12870 [=====================>-----------------------------------------------------------------]  26%
  3325/12870 [=====================>-----------------------------------------------------------------]  26%
  3326/12870 [=====================>-----------------------------------------------------------------]  26%
  3327/12870 [=====================>-----------------------------------------------------------------]  26%
  3328/12870 [=====================>-----------------------------------------------------------------]  26%
  3329/12870 [======================>----------------------------------------------------------------]  26%
  3330/12870 [======================>----------------------------------------------------------------]  26%
  3331/12870 [======================>----------------------------------------------------------------]  26%
  3332/12870 [======================>----------------------------------------------------------------]  26%
  3333/12870 [======================>----------------------------------------------------------------]  26%
  3334/12870 [======================>----------------------------------------------------------------]  26%
  3335/12870 [======================>----------------------------------------------------------------]  26%
  3336/12870 [======================>----------------------------------------------------------------]  26%
  3337/12870 [======================>----------------------------------------------------------------]  26%
  3338/12870 [======================>----------------------------------------------------------------]  26%
  3339/12870 [======================>----------------------------------------------------------------]  26%
  3340/12870 [======================>----------------------------------------------------------------]  26%
  3341/12870 [======================>----------------------------------------------------------------]  26%
  3342/12870 [======================>----------------------------------------------------------------]  26%
  3343/12870 [======================>----------------------------------------------------------------]  26%
  3344/12870 [======================>----------------------------------------------------------------]  26%
  3345/12870 [======================>----------------------------------------------------------------]  26%
  3346/12870 [======================>----------------------------------------------------------------]  26%
  3347/12870 [======================>----------------------------------------------------------------]  26%
  3348/12870 [======================>----------------------------------------------------------------]  26%
  3349/12870 [======================>----------------------------------------------------------------]  26%
  3350/12870 [======================>----------------------------------------------------------------]  26%
  3351/12870 [======================>----------------------------------------------------------------]  26%
  3352/12870 [======================>----------------------------------------------------------------]  26%
  3353/12870 [======================>----------------------------------------------------------------]  26%
  3354/12870 [======================>----------------------------------------------------------------]  26%
  3355/12870 [======================>----------------------------------------------------------------]  26%
  3356/12870 [======================>----------------------------------------------------------------]  26%
  3357/12870 [======================>----------------------------------------------------------------]  26%
  3358/12870 [======================>----------------------------------------------------------------]  26%
  3359/12870 [======================>----------------------------------------------------------------]  26%
  3360/12870 [======================>----------------------------------------------------------------]  26%
  3361/12870 [======================>----------------------------------------------------------------]  26%
  3362/12870 [======================>----------------------------------------------------------------]  26%
  3363/12870 [======================>----------------------------------------------------------------]  26%
  3364/12870 [======================>----------------------------------------------------------------]  26%
  3365/12870 [======================>----------------------------------------------------------------]  26%
  3366/12870 [======================>----------------------------------------------------------------]  26%
  3367/12870 [======================>----------------------------------------------------------------]  26%
  3368/12870 [======================>----------------------------------------------------------------]  26%
  3369/12870 [======================>----------------------------------------------------------------]  26%
  3370/12870 [======================>----------------------------------------------------------------]  26%
  3371/12870 [======================>----------------------------------------------------------------]  26%
  3372/12870 [======================>----------------------------------------------------------------]  26%
  3373/12870 [======================>----------------------------------------------------------------]  26%
  3374/12870 [======================>----------------------------------------------------------------]  26%
  3375/12870 [======================>----------------------------------------------------------------]  26%
  3376/12870 [======================>----------------------------------------------------------------]  26%
  3377/12870 [======================>----------------------------------------------------------------]  26%
  3378/12870 [======================>----------------------------------------------------------------]  26%
  3379/12870 [======================>----------------------------------------------------------------]  26%
  3380/12870 [======================>----------------------------------------------------------------]  26%
  3381/12870 [======================>----------------------------------------------------------------]  26%
  3382/12870 [======================>----------------------------------------------------------------]  26%
  3383/12870 [======================>----------------------------------------------------------------]  26%
  3384/12870 [======================>----------------------------------------------------------------]  26%
  3385/12870 [======================>----------------------------------------------------------------]  26%
  3386/12870 [======================>----------------------------------------------------------------]  26%
  3387/12870 [======================>----------------------------------------------------------------]  26%
  3388/12870 [======================>----------------------------------------------------------------]  26%
  3389/12870 [======================>----------------------------------------------------------------]  26%
  3390/12870 [======================>----------------------------------------------------------------]  26%
  3391/12870 [======================>----------------------------------------------------------------]  26%
  3392/12870 [======================>----------------------------------------------------------------]  26%
  3393/12870 [======================>----------------------------------------------------------------]  26%
  3394/12870 [======================>----------------------------------------------------------------]  26%
  3395/12870 [======================>----------------------------------------------------------------]  26%
  3396/12870 [======================>----------------------------------------------------------------]  26%
  3397/12870 [======================>----------------------------------------------------------------]  26%
  3398/12870 [======================>----------------------------------------------------------------]  26%
  3399/12870 [======================>----------------------------------------------------------------]  26%
  3400/12870 [======================>----------------------------------------------------------------]  26%
  3401/12870 [======================>----------------------------------------------------------------]  26%
  3402/12870 [======================>----------------------------------------------------------------]  26%
  3403/12870 [======================>----------------------------------------------------------------]  26%
  3404/12870 [======================>----------------------------------------------------------------]  26%
  3405/12870 [======================>----------------------------------------------------------------]  26%
  3406/12870 [======================>----------------------------------------------------------------]  26%
  3407/12870 [======================>----------------------------------------------------------------]  26%
  3408/12870 [======================>----------------------------------------------------------------]  26%
  3409/12870 [======================>----------------------------------------------------------------]  26%
  3410/12870 [======================>----------------------------------------------------------------]  26%
  3411/12870 [======================>----------------------------------------------------------------]  27%
  3412/12870 [======================>----------------------------------------------------------------]  27%
  3413/12870 [======================>----------------------------------------------------------------]  27%
  3414/12870 [======================>----------------------------------------------------------------]  27%
  3415/12870 [======================>----------------------------------------------------------------]  27%
  3416/12870 [======================>----------------------------------------------------------------]  27%
  3417/12870 [======================>----------------------------------------------------------------]  27%
  3418/12870 [======================>----------------------------------------------------------------]  27%
  3419/12870 [======================>----------------------------------------------------------------]  27%
  3420/12870 [======================>----------------------------------------------------------------]  27%
  3421/12870 [======================>----------------------------------------------------------------]  27%
  3422/12870 [======================>----------------------------------------------------------------]  27%
  3423/12870 [======================>----------------------------------------------------------------]  27%
  3424/12870 [======================>----------------------------------------------------------------]  27%
  3425/12870 [======================>----------------------------------------------------------------]  27%
  3426/12870 [======================>----------------------------------------------------------------]  27%
  3427/12870 [======================>----------------------------------------------------------------]  27%
  3428/12870 [======================>----------------------------------------------------------------]  27%
  3429/12870 [======================>----------------------------------------------------------------]  27%
  3430/12870 [======================>----------------------------------------------------------------]  27%
  3431/12870 [======================>----------------------------------------------------------------]  27%
  3432/12870 [======================>----------------------------------------------------------------]  27%
  3433/12870 [======================>----------------------------------------------------------------]  27%
  3434/12870 [======================>----------------------------------------------------------------]  27%
  3435/12870 [======================>----------------------------------------------------------------]  27%
  3436/12870 [======================>----------------------------------------------------------------]  27%
  3437/12870 [======================>----------------------------------------------------------------]  27%
  3438/12870 [======================>----------------------------------------------------------------]  27%
  3439/12870 [======================>----------------------------------------------------------------]  27%
  3440/12870 [======================>----------------------------------------------------------------]  27%
  3441/12870 [======================>----------------------------------------------------------------]  27%
  3442/12870 [======================>----------------------------------------------------------------]  27%
  3443/12870 [======================>----------------------------------------------------------------]  27%
  3444/12870 [======================>----------------------------------------------------------------]  27%
  3445/12870 [======================>----------------------------------------------------------------]  27%
  3446/12870 [======================>----------------------------------------------------------------]  27%
  3447/12870 [======================>----------------------------------------------------------------]  27%
  3448/12870 [======================>----------------------------------------------------------------]  27%
  3449/12870 [======================>----------------------------------------------------------------]  27%
  3450/12870 [======================>----------------------------------------------------------------]  27%
  3451/12870 [======================>----------------------------------------------------------------]  27%
  3452/12870 [======================>----------------------------------------------------------------]  27%
  3453/12870 [======================>----------------------------------------------------------------]  27%
  3454/12870 [======================>----------------------------------------------------------------]  27%
  3455/12870 [======================>----------------------------------------------------------------]  27%
  3456/12870 [======================>----------------------------------------------------------------]  27%
  3457/12870 [======================>----------------------------------------------------------------]  27%
  3458/12870 [======================>----------------------------------------------------------------]  27%
  3459/12870 [======================>----------------------------------------------------------------]  27%
  3460/12870 [======================>----------------------------------------------------------------]  27%
  3461/12870 [======================>----------------------------------------------------------------]  27%
  3462/12870 [======================>----------------------------------------------------------------]  27%
  3463/12870 [======================>----------------------------------------------------------------]  27%
  3464/12870 [======================>----------------------------------------------------------------]  27%
  3465/12870 [======================>----------------------------------------------------------------]  27%
  3466/12870 [======================>----------------------------------------------------------------]  27%
  3467/12870 [======================>----------------------------------------------------------------]  27%
  3468/12870 [======================>----------------------------------------------------------------]  27%
  3469/12870 [======================>----------------------------------------------------------------]  27%
  3470/12870 [======================>----------------------------------------------------------------]  27%
  3471/12870 [======================>----------------------------------------------------------------]  27%
  3472/12870 [======================>----------------------------------------------------------------]  27%
  3473/12870 [======================>----------------------------------------------------------------]  27%
  3474/12870 [======================>----------------------------------------------------------------]  27%
  3475/12870 [======================>----------------------------------------------------------------]  27%
  3476/12870 [======================>----------------------------------------------------------------]  27%
  3477/12870 [=======================>---------------------------------------------------------------]  27%
  3478/12870 [=======================>---------------------------------------------------------------]  27%
  3479/12870 [=======================>---------------------------------------------------------------]  27%
  3480/12870 [=======================>---------------------------------------------------------------]  27%
  3481/12870 [=======================>---------------------------------------------------------------]  27%
  3482/12870 [=======================>---------------------------------------------------------------]  27%
  3483/12870 [=======================>---------------------------------------------------------------]  27%
  3484/12870 [=======================>---------------------------------------------------------------]  27%
  3485/12870 [=======================>---------------------------------------------------------------]  27%
  3486/12870 [=======================>---------------------------------------------------------------]  27%
  3487/12870 [=======================>---------------------------------------------------------------]  27%
  3488/12870 [=======================>---------------------------------------------------------------]  27%
  3489/12870 [=======================>---------------------------------------------------------------]  27%
  3490/12870 [=======================>---------------------------------------------------------------]  27%
  3491/12870 [=======================>---------------------------------------------------------------]  27%
  3492/12870 [=======================>---------------------------------------------------------------]  27%
  3493/12870 [=======================>---------------------------------------------------------------]  27%
  3494/12870 [=======================>---------------------------------------------------------------]  27%
  3495/12870 [=======================>---------------------------------------------------------------]  27%
  3496/12870 [=======================>---------------------------------------------------------------]  27%
  3497/12870 [=======================>---------------------------------------------------------------]  27%
  3498/12870 [=======================>---------------------------------------------------------------]  27%
  3499/12870 [=======================>---------------------------------------------------------------]  27%
  3500/12870 [=======================>---------------------------------------------------------------]  27%
  3501/12870 [=======================>---------------------------------------------------------------]  27%
  3502/12870 [=======================>---------------------------------------------------------------]  27%
  3503/12870 [=======================>---------------------------------------------------------------]  27%
  3504/12870 [=======================>---------------------------------------------------------------]  27%
  3505/12870 [=======================>---------------------------------------------------------------]  27%
  3506/12870 [=======================>---------------------------------------------------------------]  27%
  3507/12870 [=======================>---------------------------------------------------------------]  27%
  3508/12870 [=======================>---------------------------------------------------------------]  27%
  3509/12870 [=======================>---------------------------------------------------------------]  27%
  3510/12870 [=======================>---------------------------------------------------------------]  27%
  3511/12870 [=======================>---------------------------------------------------------------]  27%
  3512/12870 [=======================>---------------------------------------------------------------]  27%
  3513/12870 [=======================>---------------------------------------------------------------]  27%
  3514/12870 [=======================>---------------------------------------------------------------]  27%
  3515/12870 [=======================>---------------------------------------------------------------]  27%
  3516/12870 [=======================>---------------------------------------------------------------]  27%
  3517/12870 [=======================>---------------------------------------------------------------]  27%
  3518/12870 [=======================>---------------------------------------------------------------]  27%
  3519/12870 [=======================>---------------------------------------------------------------]  27%
  3520/12870 [=======================>---------------------------------------------------------------]  27%
  3521/12870 [=======================>---------------------------------------------------------------]  27%
  3522/12870 [=======================>---------------------------------------------------------------]  27%
  3523/12870 [=======================>---------------------------------------------------------------]  27%
  3524/12870 [=======================>---------------------------------------------------------------]  27%
  3525/12870 [=======================>---------------------------------------------------------------]  27%
  3526/12870 [=======================>---------------------------------------------------------------]  27%
  3527/12870 [=======================>---------------------------------------------------------------]  27%
  3528/12870 [=======================>---------------------------------------------------------------]  27%
  3529/12870 [=======================>---------------------------------------------------------------]  27%
  3530/12870 [=======================>---------------------------------------------------------------]  27%
  3531/12870 [=======================>---------------------------------------------------------------]  27%
  3532/12870 [=======================>---------------------------------------------------------------]  27%
  3533/12870 [=======================>---------------------------------------------------------------]  27%
  3534/12870 [=======================>---------------------------------------------------------------]  27%
  3535/12870 [=======================>---------------------------------------------------------------]  27%
  3536/12870 [=======================>---------------------------------------------------------------]  27%
  3537/12870 [=======================>---------------------------------------------------------------]  27%
  3538/12870 [=======================>---------------------------------------------------------------]  27%
  3539/12870 [=======================>---------------------------------------------------------------]  27%
  3540/12870 [=======================>---------------------------------------------------------------]  28%
  3541/12870 [=======================>---------------------------------------------------------------]  28%
  3542/12870 [=======================>---------------------------------------------------------------]  28%
  3543/12870 [=======================>---------------------------------------------------------------]  28%
  3544/12870 [=======================>---------------------------------------------------------------]  28%
  3545/12870 [=======================>---------------------------------------------------------------]  28%
  3546/12870 [=======================>---------------------------------------------------------------]  28%
  3547/12870 [=======================>---------------------------------------------------------------]  28%
  3548/12870 [=======================>---------------------------------------------------------------]  28%
  3549/12870 [=======================>---------------------------------------------------------------]  28%
  3550/12870 [=======================>---------------------------------------------------------------]  28%
  3551/12870 [=======================>---------------------------------------------------------------]  28%
  3552/12870 [=======================>---------------------------------------------------------------]  28%
  3553/12870 [=======================>---------------------------------------------------------------]  28%
  3554/12870 [=======================>---------------------------------------------------------------]  28%
  3555/12870 [=======================>---------------------------------------------------------------]  28%
  3556/12870 [=======================>---------------------------------------------------------------]  28%
  3557/12870 [=======================>---------------------------------------------------------------]  28%
  3558/12870 [=======================>---------------------------------------------------------------]  28%
  3559/12870 [=======================>---------------------------------------------------------------]  28%
  3560/12870 [=======================>---------------------------------------------------------------]  28%
  3561/12870 [=======================>---------------------------------------------------------------]  28%
  3562/12870 [=======================>---------------------------------------------------------------]  28%
  3563/12870 [=======================>---------------------------------------------------------------]  28%
  3564/12870 [=======================>---------------------------------------------------------------]  28%
  3565/12870 [=======================>---------------------------------------------------------------]  28%
  3566/12870 [=======================>---------------------------------------------------------------]  28%
  3567/12870 [=======================>---------------------------------------------------------------]  28%
  3568/12870 [=======================>---------------------------------------------------------------]  28%
  3569/12870 [=======================>---------------------------------------------------------------]  28%
  3570/12870 [=======================>---------------------------------------------------------------]  28%
  3571/12870 [=======================>---------------------------------------------------------------]  28%
  3572/12870 [=======================>---------------------------------------------------------------]  28%
  3573/12870 [=======================>---------------------------------------------------------------]  28%
  3574/12870 [=======================>---------------------------------------------------------------]  28%
  3575/12870 [=======================>---------------------------------------------------------------]  28%
  3576/12870 [=======================>---------------------------------------------------------------]  28%
  3577/12870 [=======================>---------------------------------------------------------------]  28%
  3578/12870 [=======================>---------------------------------------------------------------]  28%
  3579/12870 [=======================>---------------------------------------------------------------]  28%
  3580/12870 [=======================>---------------------------------------------------------------]  28%
  3581/12870 [=======================>---------------------------------------------------------------]  28%
  3582/12870 [=======================>---------------------------------------------------------------]  28%
  3583/12870 [=======================>---------------------------------------------------------------]  28%
  3584/12870 [=======================>---------------------------------------------------------------]  28%
  3585/12870 [=======================>---------------------------------------------------------------]  28%
  3586/12870 [=======================>---------------------------------------------------------------]  28%
  3587/12870 [=======================>---------------------------------------------------------------]  28%
  3588/12870 [=======================>---------------------------------------------------------------]  28%
  3589/12870 [=======================>---------------------------------------------------------------]  28%
  3590/12870 [=======================>---------------------------------------------------------------]  28%
  3591/12870 [=======================>---------------------------------------------------------------]  28%
  3592/12870 [=======================>---------------------------------------------------------------]  28%
  3593/12870 [=======================>---------------------------------------------------------------]  28%
  3594/12870 [=======================>---------------------------------------------------------------]  28%
  3595/12870 [=======================>---------------------------------------------------------------]  28%
  3596/12870 [=======================>---------------------------------------------------------------]  28%
  3597/12870 [=======================>---------------------------------------------------------------]  28%
  3598/12870 [=======================>---------------------------------------------------------------]  28%
  3599/12870 [=======================>---------------------------------------------------------------]  28%
  3600/12870 [=======================>---------------------------------------------------------------]  28%
  3601/12870 [=======================>---------------------------------------------------------------]  28%
  3602/12870 [=======================>---------------------------------------------------------------]  28%
  3603/12870 [=======================>---------------------------------------------------------------]  28%
  3604/12870 [=======================>---------------------------------------------------------------]  28%
  3605/12870 [=======================>---------------------------------------------------------------]  28%
  3606/12870 [=======================>---------------------------------------------------------------]  28%
  3607/12870 [=======================>---------------------------------------------------------------]  28%
  3608/12870 [=======================>---------------------------------------------------------------]  28%
  3609/12870 [=======================>---------------------------------------------------------------]  28%
  3610/12870 [=======================>---------------------------------------------------------------]  28%
  3611/12870 [=======================>---------------------------------------------------------------]  28%
  3612/12870 [=======================>---------------------------------------------------------------]  28%
  3613/12870 [=======================>---------------------------------------------------------------]  28%
  3614/12870 [=======================>---------------------------------------------------------------]  28%
  3615/12870 [=======================>---------------------------------------------------------------]  28%
  3616/12870 [=======================>---------------------------------------------------------------]  28%
  3617/12870 [=======================>---------------------------------------------------------------]  28%
  3618/12870 [=======================>---------------------------------------------------------------]  28%
  3619/12870 [=======================>---------------------------------------------------------------]  28%
  3620/12870 [=======================>---------------------------------------------------------------]  28%
  3621/12870 [=======================>---------------------------------------------------------------]  28%
  3622/12870 [=======================>---------------------------------------------------------------]  28%
  3623/12870 [=======================>---------------------------------------------------------------]  28%
  3624/12870 [=======================>---------------------------------------------------------------]  28%
  3625/12870 [========================>--------------------------------------------------------------]  28%
  3626/12870 [========================>--------------------------------------------------------------]  28%
  3627/12870 [========================>--------------------------------------------------------------]  28%
  3628/12870 [========================>--------------------------------------------------------------]  28%
  3629/12870 [========================>--------------------------------------------------------------]  28%
  3630/12870 [========================>--------------------------------------------------------------]  28%
  3631/12870 [========================>--------------------------------------------------------------]  28%
  3632/12870 [========================>--------------------------------------------------------------]  28%
  3633/12870 [========================>--------------------------------------------------------------]  28%
  3634/12870 [========================>--------------------------------------------------------------]  28%
  3635/12870 [========================>--------------------------------------------------------------]  28%
  3636/12870 [========================>--------------------------------------------------------------]  28%
  3637/12870 [========================>--------------------------------------------------------------]  28%
  3638/12870 [========================>--------------------------------------------------------------]  28%
  3639/12870 [========================>--------------------------------------------------------------]  28%
  3640/12870 [========================>--------------------------------------------------------------]  28%
  3641/12870 [========================>--------------------------------------------------------------]  28%
  3642/12870 [========================>--------------------------------------------------------------]  28%
  3643/12870 [========================>--------------------------------------------------------------]  28%
  3644/12870 [========================>--------------------------------------------------------------]  28%
  3645/12870 [========================>--------------------------------------------------------------]  28%
  3646/12870 [========================>--------------------------------------------------------------]  28%
  3647/12870 [========================>--------------------------------------------------------------]  28%
  3648/12870 [========================>--------------------------------------------------------------]  28%
  3649/12870 [========================>--------------------------------------------------------------]  28%
  3650/12870 [========================>--------------------------------------------------------------]  28%
  3651/12870 [========================>--------------------------------------------------------------]  28%
  3652/12870 [========================>--------------------------------------------------------------]  28%
  3653/12870 [========================>--------------------------------------------------------------]  28%
  3654/12870 [========================>--------------------------------------------------------------]  28%
  3655/12870 [========================>--------------------------------------------------------------]  28%
  3656/12870 [========================>--------------------------------------------------------------]  28%
  3657/12870 [========================>--------------------------------------------------------------]  28%
  3658/12870 [========================>--------------------------------------------------------------]  28%
  3659/12870 [========================>--------------------------------------------------------------]  28%
  3660/12870 [========================>--------------------------------------------------------------]  28%
  3661/12870 [========================>--------------------------------------------------------------]  28%
  3662/12870 [========================>--------------------------------------------------------------]  28%
  3663/12870 [========================>--------------------------------------------------------------]  28%
  3664/12870 [========================>--------------------------------------------------------------]  28%
  3665/12870 [========================>--------------------------------------------------------------]  28%
  3666/12870 [========================>--------------------------------------------------------------]  28%
  3667/12870 [========================>--------------------------------------------------------------]  28%
  3668/12870 [========================>--------------------------------------------------------------]  29%
  3669/12870 [========================>--------------------------------------------------------------]  29%
  3670/12870 [========================>--------------------------------------------------------------]  29%
  3671/12870 [========================>--------------------------------------------------------------]  29%
  3672/12870 [========================>--------------------------------------------------------------]  29%
  3673/12870 [========================>--------------------------------------------------------------]  29%
  3674/12870 [========================>--------------------------------------------------------------]  29%
  3675/12870 [========================>--------------------------------------------------------------]  29%
  3676/12870 [========================>--------------------------------------------------------------]  29%
  3677/12870 [========================>--------------------------------------------------------------]  29%
  3678/12870 [========================>--------------------------------------------------------------]  29%
  3679/12870 [========================>--------------------------------------------------------------]  29%
  3680/12870 [========================>--------------------------------------------------------------]  29%
  3681/12870 [========================>--------------------------------------------------------------]  29%
  3682/12870 [========================>--------------------------------------------------------------]  29%
  3683/12870 [========================>--------------------------------------------------------------]  29%
  3684/12870 [========================>--------------------------------------------------------------]  29%
  3685/12870 [========================>--------------------------------------------------------------]  29%
  3686/12870 [========================>--------------------------------------------------------------]  29%
  3687/12870 [========================>--------------------------------------------------------------]  29%
  3688/12870 [========================>--------------------------------------------------------------]  29%
  3689/12870 [========================>--------------------------------------------------------------]  29%
  3690/12870 [========================>--------------------------------------------------------------]  29%
  3691/12870 [========================>--------------------------------------------------------------]  29%
  3692/12870 [========================>--------------------------------------------------------------]  29%
  3693/12870 [========================>--------------------------------------------------------------]  29%
  3694/12870 [========================>--------------------------------------------------------------]  29%
  3695/12870 [========================>--------------------------------------------------------------]  29%
  3696/12870 [========================>--------------------------------------------------------------]  29%
  3697/12870 [========================>--------------------------------------------------------------]  29%
  3698/12870 [========================>--------------------------------------------------------------]  29%
  3699/12870 [========================>--------------------------------------------------------------]  29%
  3700/12870 [========================>--------------------------------------------------------------]  29%
  3701/12870 [========================>--------------------------------------------------------------]  29%
  3702/12870 [========================>--------------------------------------------------------------]  29%
  3703/12870 [========================>--------------------------------------------------------------]  29%
  3704/12870 [========================>--------------------------------------------------------------]  29%
  3705/12870 [========================>--------------------------------------------------------------]  29%
  3706/12870 [========================>--------------------------------------------------------------]  29%
  3707/12870 [========================>--------------------------------------------------------------]  29%
  3708/12870 [========================>--------------------------------------------------------------]  29%
  3709/12870 [========================>--------------------------------------------------------------]  29%
  3710/12870 [========================>--------------------------------------------------------------]  29%
  3711/12870 [========================>--------------------------------------------------------------]  29%
  3712/12870 [========================>--------------------------------------------------------------]  29%
  3713/12870 [========================>--------------------------------------------------------------]  29%
  3714/12870 [========================>--------------------------------------------------------------]  29%
  3715/12870 [========================>--------------------------------------------------------------]  29%
  3716/12870 [========================>--------------------------------------------------------------]  29%
  3717/12870 [========================>--------------------------------------------------------------]  29%
  3718/12870 [========================>--------------------------------------------------------------]  29%
  3719/12870 [========================>--------------------------------------------------------------]  29%
  3720/12870 [========================>--------------------------------------------------------------]  29%
  3721/12870 [========================>--------------------------------------------------------------]  29%
  3722/12870 [========================>--------------------------------------------------------------]  29%
  3723/12870 [========================>--------------------------------------------------------------]  29%
  3724/12870 [========================>--------------------------------------------------------------]  29%
  3725/12870 [========================>--------------------------------------------------------------]  29%
  3726/12870 [========================>--------------------------------------------------------------]  29%
  3727/12870 [========================>--------------------------------------------------------------]  29%
  3728/12870 [========================>--------------------------------------------------------------]  29%
  3729/12870 [========================>--------------------------------------------------------------]  29%
  3730/12870 [========================>--------------------------------------------------------------]  29%
  3731/12870 [========================>--------------------------------------------------------------]  29%
  3732/12870 [========================>--------------------------------------------------------------]  29%
  3733/12870 [========================>--------------------------------------------------------------]  29%
  3734/12870 [========================>--------------------------------------------------------------]  29%
  3735/12870 [========================>--------------------------------------------------------------]  29%
  3736/12870 [========================>--------------------------------------------------------------]  29%
  3737/12870 [========================>--------------------------------------------------------------]  29%
  3738/12870 [========================>--------------------------------------------------------------]  29%
  3739/12870 [========================>--------------------------------------------------------------]  29%
  3740/12870 [========================>--------------------------------------------------------------]  29%
  3741/12870 [========================>--------------------------------------------------------------]  29%
  3742/12870 [========================>--------------------------------------------------------------]  29%
  3743/12870 [========================>--------------------------------------------------------------]  29%
  3744/12870 [========================>--------------------------------------------------------------]  29%
  3745/12870 [========================>--------------------------------------------------------------]  29%
  3746/12870 [========================>--------------------------------------------------------------]  29%
  3747/12870 [========================>--------------------------------------------------------------]  29%
  3748/12870 [========================>--------------------------------------------------------------]  29%
  3749/12870 [========================>--------------------------------------------------------------]  29%
  3750/12870 [========================>--------------------------------------------------------------]  29%
  3751/12870 [========================>--------------------------------------------------------------]  29%
  3752/12870 [========================>--------------------------------------------------------------]  29%
  3753/12870 [========================>--------------------------------------------------------------]  29%
  3754/12870 [========================>--------------------------------------------------------------]  29%
  3755/12870 [========================>--------------------------------------------------------------]  29%
  3756/12870 [========================>--------------------------------------------------------------]  29%
  3757/12870 [========================>--------------------------------------------------------------]  29%
  3758/12870 [========================>--------------------------------------------------------------]  29%
  3759/12870 [========================>--------------------------------------------------------------]  29%
  3760/12870 [========================>--------------------------------------------------------------]  29%
  3761/12870 [========================>--------------------------------------------------------------]  29%
  3762/12870 [========================>--------------------------------------------------------------]  29%
  3763/12870 [========================>--------------------------------------------------------------]  29%
  3764/12870 [========================>--------------------------------------------------------------]  29%
  3765/12870 [========================>--------------------------------------------------------------]  29%
  3766/12870 [========================>--------------------------------------------------------------]  29%
  3767/12870 [========================>--------------------------------------------------------------]  29%
  3768/12870 [========================>--------------------------------------------------------------]  29%
  3769/12870 [========================>--------------------------------------------------------------]  29%
  3770/12870 [========================>--------------------------------------------------------------]  29%
  3771/12870 [========================>--------------------------------------------------------------]  29%
  3772/12870 [========================>--------------------------------------------------------------]  29%
  3773/12870 [=========================>-------------------------------------------------------------]  29%
  3774/12870 [=========================>-------------------------------------------------------------]  29%
  3775/12870 [=========================>-------------------------------------------------------------]  29%
  3776/12870 [=========================>-------------------------------------------------------------]  29%
  3777/12870 [=========================>-------------------------------------------------------------]  29%
  3778/12870 [=========================>-------------------------------------------------------------]  29%
  3779/12870 [=========================>-------------------------------------------------------------]  29%
  3780/12870 [=========================>-------------------------------------------------------------]  29%
  3781/12870 [=========================>-------------------------------------------------------------]  29%
  3782/12870 [=========================>-------------------------------------------------------------]  29%
  3783/12870 [=========================>-------------------------------------------------------------]  29%
  3784/12870 [=========================>-------------------------------------------------------------]  29%
  3785/12870 [=========================>-------------------------------------------------------------]  29%
  3786/12870 [=========================>-------------------------------------------------------------]  29%
  3787/12870 [=========================>-------------------------------------------------------------]  29%
  3788/12870 [=========================>-------------------------------------------------------------]  29%
  3789/12870 [=========================>-------------------------------------------------------------]  29%
  3790/12870 [=========================>-------------------------------------------------------------]  29%
  3791/12870 [=========================>-------------------------------------------------------------]  29%
  3792/12870 [=========================>-------------------------------------------------------------]  29%
  3793/12870 [=========================>-------------------------------------------------------------]  29%
  3794/12870 [=========================>-------------------------------------------------------------]  29%
  3795/12870 [=========================>-------------------------------------------------------------]  29%
  3796/12870 [=========================>-------------------------------------------------------------]  29%
  3797/12870 [=========================>-------------------------------------------------------------]  30%
  3798/12870 [=========================>-------------------------------------------------------------]  30%
  3799/12870 [=========================>-------------------------------------------------------------]  30%
  3800/12870 [=========================>-------------------------------------------------------------]  30%
  3801/12870 [=========================>-------------------------------------------------------------]  30%
  3802/12870 [=========================>-------------------------------------------------------------]  30%
  3803/12870 [=========================>-------------------------------------------------------------]  30%
  3804/12870 [=========================>-------------------------------------------------------------]  30%
  3805/12870 [=========================>-------------------------------------------------------------]  30%
  3806/12870 [=========================>-------------------------------------------------------------]  30%
  3807/12870 [=========================>-------------------------------------------------------------]  30%
  3808/12870 [=========================>-------------------------------------------------------------]  30%
  3809/12870 [=========================>-------------------------------------------------------------]  30%
  3810/12870 [=========================>-------------------------------------------------------------]  30%
  3811/12870 [=========================>-------------------------------------------------------------]  30%
  3812/12870 [=========================>-------------------------------------------------------------]  30%
  3813/12870 [=========================>-------------------------------------------------------------]  30%
  3814/12870 [=========================>-------------------------------------------------------------]  30%
  3815/12870 [=========================>-------------------------------------------------------------]  30%
  3816/12870 [=========================>-------------------------------------------------------------]  30%
  3817/12870 [=========================>-------------------------------------------------------------]  30%
  3818/12870 [=========================>-------------------------------------------------------------]  30%
  3819/12870 [=========================>-------------------------------------------------------------]  30%
  3820/12870 [=========================>-------------------------------------------------------------]  30%
  3821/12870 [=========================>-------------------------------------------------------------]  30%
  3822/12870 [=========================>-------------------------------------------------------------]  30%
  3823/12870 [=========================>-------------------------------------------------------------]  30%
  3824/12870 [=========================>-------------------------------------------------------------]  30%
  3825/12870 [=========================>-------------------------------------------------------------]  30%
  3826/12870 [=========================>-------------------------------------------------------------]  30%
  3827/12870 [=========================>-------------------------------------------------------------]  30%
  3828/12870 [=========================>-------------------------------------------------------------]  30%
  3829/12870 [=========================>-------------------------------------------------------------]  30%
  3830/12870 [=========================>-------------------------------------------------------------]  30%
  3831/12870 [=========================>-------------------------------------------------------------]  30%
  3832/12870 [=========================>-------------------------------------------------------------]  30%
  3833/12870 [=========================>-------------------------------------------------------------]  30%
  3834/12870 [=========================>-------------------------------------------------------------]  30%
  3835/12870 [=========================>-------------------------------------------------------------]  30%
  3836/12870 [=========================>-------------------------------------------------------------]  30%
  3837/12870 [=========================>-------------------------------------------------------------]  30%
  3838/12870 [=========================>-------------------------------------------------------------]  30%
  3839/12870 [=========================>-------------------------------------------------------------]  30%
  3840/12870 [=========================>-------------------------------------------------------------]  30%
  3841/12870 [=========================>-------------------------------------------------------------]  30%
  3842/12870 [=========================>-------------------------------------------------------------]  30%
  3843/12870 [=========================>-------------------------------------------------------------]  30%
  3844/12870 [=========================>-------------------------------------------------------------]  30%
  3845/12870 [=========================>-------------------------------------------------------------]  30%
  3846/12870 [=========================>-------------------------------------------------------------]  30%
  3847/12870 [=========================>-------------------------------------------------------------]  30%
  3848/12870 [=========================>-------------------------------------------------------------]  30%
  3849/12870 [=========================>-------------------------------------------------------------]  30%
  3850/12870 [=========================>-------------------------------------------------------------]  30%
  3851/12870 [=========================>-------------------------------------------------------------]  30%
  3852/12870 [=========================>-------------------------------------------------------------]  30%
  3853/12870 [=========================>-------------------------------------------------------------]  30%
  3854/12870 [=========================>-------------------------------------------------------------]  30%
  3855/12870 [=========================>-------------------------------------------------------------]  30%
  3856/12870 [=========================>-------------------------------------------------------------]  30%
  3857/12870 [=========================>-------------------------------------------------------------]  30%
  3858/12870 [=========================>-------------------------------------------------------------]  30%
  3859/12870 [=========================>-------------------------------------------------------------]  30%
  3860/12870 [=========================>-------------------------------------------------------------]  30%
  3861/12870 [=========================>-------------------------------------------------------------]  30%
  3862/12870 [=========================>-------------------------------------------------------------]  30%
  3863/12870 [=========================>-------------------------------------------------------------]  30%
  3864/12870 [=========================>-------------------------------------------------------------]  30%
  3865/12870 [=========================>-------------------------------------------------------------]  30%
  3866/12870 [=========================>-------------------------------------------------------------]  30%
  3867/12870 [=========================>-------------------------------------------------------------]  30%
  3868/12870 [=========================>-------------------------------------------------------------]  30%
  3869/12870 [=========================>-------------------------------------------------------------]  30%
  3870/12870 [=========================>-------------------------------------------------------------]  30%
  3871/12870 [=========================>-------------------------------------------------------------]  30%
  3872/12870 [=========================>-------------------------------------------------------------]  30%
  3873/12870 [=========================>-------------------------------------------------------------]  30%
  3874/12870 [=========================>-------------------------------------------------------------]  30%
  3875/12870 [=========================>-------------------------------------------------------------]  30%
  3876/12870 [=========================>-------------------------------------------------------------]  30%
  3877/12870 [=========================>-------------------------------------------------------------]  30%
  3878/12870 [=========================>-------------------------------------------------------------]  30%
  3879/12870 [=========================>-------------------------------------------------------------]  30%
  3880/12870 [=========================>-------------------------------------------------------------]  30%
  3881/12870 [=========================>-------------------------------------------------------------]  30%
  3882/12870 [=========================>-------------------------------------------------------------]  30%
  3883/12870 [=========================>-------------------------------------------------------------]  30%
  3884/12870 [=========================>-------------------------------------------------------------]  30%
  3885/12870 [=========================>-------------------------------------------------------------]  30%
  3886/12870 [=========================>-------------------------------------------------------------]  30%
  3887/12870 [=========================>-------------------------------------------------------------]  30%
  3888/12870 [=========================>-------------------------------------------------------------]  30%
  3889/12870 [=========================>-------------------------------------------------------------]  30%
  3890/12870 [=========================>-------------------------------------------------------------]  30%
  3891/12870 [=========================>-------------------------------------------------------------]  30%
  3892/12870 [=========================>-------------------------------------------------------------]  30%
  3893/12870 [=========================>-------------------------------------------------------------]  30%
  3894/12870 [=========================>-------------------------------------------------------------]  30%
  3895/12870 [=========================>-------------------------------------------------------------]  30%
  3896/12870 [=========================>-------------------------------------------------------------]  30%
  3897/12870 [=========================>-------------------------------------------------------------]  30%
  3898/12870 [=========================>-------------------------------------------------------------]  30%
  3899/12870 [=========================>-------------------------------------------------------------]  30%
  3900/12870 [=========================>-------------------------------------------------------------]  30%
  3901/12870 [=========================>-------------------------------------------------------------]  30%
  3902/12870 [=========================>-------------------------------------------------------------]  30%
  3903/12870 [=========================>-------------------------------------------------------------]  30%
  3904/12870 [=========================>-------------------------------------------------------------]  30%
  3905/12870 [=========================>-------------------------------------------------------------]  30%
  3906/12870 [=========================>-------------------------------------------------------------]  30%
  3907/12870 [=========================>-------------------------------------------------------------]  30%
  3908/12870 [=========================>-------------------------------------------------------------]  30%
  3909/12870 [=========================>-------------------------------------------------------------]  30%
  3910/12870 [=========================>-------------------------------------------------------------]  30%
  3911/12870 [=========================>-------------------------------------------------------------]  30%
  3912/12870 [=========================>-------------------------------------------------------------]  30%
  3913/12870 [=========================>-------------------------------------------------------------]  30%
  3914/12870 [=========================>-------------------------------------------------------------]  30%
  3915/12870 [=========================>-------------------------------------------------------------]  30%
  3916/12870 [=========================>-------------------------------------------------------------]  30%
  3917/12870 [=========================>-------------------------------------------------------------]  30%
  3918/12870 [=========================>-------------------------------------------------------------]  30%
  3919/12870 [=========================>-------------------------------------------------------------]  30%
  3920/12870 [=========================>-------------------------------------------------------------]  30%
  3921/12870 [==========================>------------------------------------------------------------]  30%
  3922/12870 [==========================>------------------------------------------------------------]  30%
  3923/12870 [==========================>------------------------------------------------------------]  30%
  3924/12870 [==========================>------------------------------------------------------------]  30%
  3925/12870 [==========================>------------------------------------------------------------]  30%
  3926/12870 [==========================>------------------------------------------------------------]  31%
  3927/12870 [==========================>------------------------------------------------------------]  31%
  3928/12870 [==========================>------------------------------------------------------------]  31%
  3929/12870 [==========================>------------------------------------------------------------]  31%
  3930/12870 [==========================>------------------------------------------------------------]  31%
  3931/12870 [==========================>------------------------------------------------------------]  31%
  3932/12870 [==========================>------------------------------------------------------------]  31%
  3933/12870 [==========================>------------------------------------------------------------]  31%
  3934/12870 [==========================>------------------------------------------------------------]  31%
  3935/12870 [==========================>------------------------------------------------------------]  31%
  3936/12870 [==========================>------------------------------------------------------------]  31%
  3937/12870 [==========================>------------------------------------------------------------]  31%
  3938/12870 [==========================>------------------------------------------------------------]  31%
  3939/12870 [==========================>------------------------------------------------------------]  31%
  3940/12870 [==========================>------------------------------------------------------------]  31%
  3941/12870 [==========================>------------------------------------------------------------]  31%
  3942/12870 [==========================>------------------------------------------------------------]  31%
  3943/12870 [==========================>------------------------------------------------------------]  31%
  3944/12870 [==========================>------------------------------------------------------------]  31%
  3945/12870 [==========================>------------------------------------------------------------]  31%
  3946/12870 [==========================>------------------------------------------------------------]  31%
  3947/12870 [==========================>------------------------------------------------------------]  31%
  3948/12870 [==========================>------------------------------------------------------------]  31%
  3949/12870 [==========================>------------------------------------------------------------]  31%
  3950/12870 [==========================>------------------------------------------------------------]  31%
  3951/12870 [==========================>------------------------------------------------------------]  31%
  3952/12870 [==========================>------------------------------------------------------------]  31%
  3953/12870 [==========================>------------------------------------------------------------]  31%
  3954/12870 [==========================>------------------------------------------------------------]  31%
  3955/12870 [==========================>------------------------------------------------------------]  31%
  3956/12870 [==========================>------------------------------------------------------------]  31%
  3957/12870 [==========================>------------------------------------------------------------]  31%
  3958/12870 [==========================>------------------------------------------------------------]  31%
  3959/12870 [==========================>------------------------------------------------------------]  31%
  3960/12870 [==========================>------------------------------------------------------------]  31%
  3961/12870 [==========================>------------------------------------------------------------]  31%
  3962/12870 [==========================>------------------------------------------------------------]  31%
  3963/12870 [==========================>------------------------------------------------------------]  31%
  3964/12870 [==========================>------------------------------------------------------------]  31%
  3965/12870 [==========================>------------------------------------------------------------]  31%
  3966/12870 [==========================>------------------------------------------------------------]  31%
  3967/12870 [==========================>------------------------------------------------------------]  31%
  3968/12870 [==========================>------------------------------------------------------------]  31%
  3969/12870 [==========================>------------------------------------------------------------]  31%
  3970/12870 [==========================>------------------------------------------------------------]  31%
  3971/12870 [==========================>------------------------------------------------------------]  31%
  3972/12870 [==========================>------------------------------------------------------------]  31%
  3973/12870 [==========================>------------------------------------------------------------]  31%
  3974/12870 [==========================>------------------------------------------------------------]  31%
  3975/12870 [==========================>------------------------------------------------------------]  31%
  3976/12870 [==========================>------------------------------------------------------------]  31%
  3977/12870 [==========================>------------------------------------------------------------]  31%
  3978/12870 [==========================>------------------------------------------------------------]  31%
  3979/12870 [==========================>------------------------------------------------------------]  31%
  3980/12870 [==========================>------------------------------------------------------------]  31%
  3981/12870 [==========================>------------------------------------------------------------]  31%
  3982/12870 [==========================>------------------------------------------------------------]  31%
  3983/12870 [==========================>------------------------------------------------------------]  31%
  3984/12870 [==========================>------------------------------------------------------------]  31%
  3985/12870 [==========================>------------------------------------------------------------]  31%
  3986/12870 [==========================>------------------------------------------------------------]  31%
  3987/12870 [==========================>------------------------------------------------------------]  31%
  3988/12870 [==========================>------------------------------------------------------------]  31%
  3989/12870 [==========================>------------------------------------------------------------]  31%
  3990/12870 [==========================>------------------------------------------------------------]  31%
  3991/12870 [==========================>------------------------------------------------------------]  31%
  3992/12870 [==========================>------------------------------------------------------------]  31%
  3993/12870 [==========================>------------------------------------------------------------]  31%
  3994/12870 [==========================>------------------------------------------------------------]  31%
  3995/12870 [==========================>------------------------------------------------------------]  31%
  3996/12870 [==========================>------------------------------------------------------------]  31%
  3997/12870 [==========================>------------------------------------------------------------]  31%
  3998/12870 [==========================>------------------------------------------------------------]  31%
  3999/12870 [==========================>------------------------------------------------------------]  31%
  4000/12870 [==========================>------------------------------------------------------------]  31%
  4001/12870 [==========================>------------------------------------------------------------]  31%
  4002/12870 [==========================>------------------------------------------------------------]  31%
  4003/12870 [==========================>------------------------------------------------------------]  31%
  4004/12870 [==========================>------------------------------------------------------------]  31%
  4005/12870 [==========================>------------------------------------------------------------]  31%
  4006/12870 [==========================>------------------------------------------------------------]  31%
  4007/12870 [==========================>------------------------------------------------------------]  31%
  4008/12870 [==========================>------------------------------------------------------------]  31%
  4009/12870 [==========================>------------------------------------------------------------]  31%
  4010/12870 [==========================>------------------------------------------------------------]  31%
  4011/12870 [==========================>------------------------------------------------------------]  31%
  4012/12870 [==========================>------------------------------------------------------------]  31%
  4013/12870 [==========================>------------------------------------------------------------]  31%
  4014/12870 [==========================>------------------------------------------------------------]  31%
  4015/12870 [==========================>------------------------------------------------------------]  31%
  4016/12870 [==========================>------------------------------------------------------------]  31%
  4017/12870 [==========================>------------------------------------------------------------]  31%
  4018/12870 [==========================>------------------------------------------------------------]  31%
  4019/12870 [==========================>------------------------------------------------------------]  31%
  4020/12870 [==========================>------------------------------------------------------------]  31%
  4021/12870 [==========================>------------------------------------------------------------]  31%
  4022/12870 [==========================>------------------------------------------------------------]  31%
  4023/12870 [==========================>------------------------------------------------------------]  31%
  4024/12870 [==========================>------------------------------------------------------------]  31%
  4025/12870 [==========================>------------------------------------------------------------]  31%
  4026/12870 [==========================>------------------------------------------------------------]  31%
  4027/12870 [==========================>------------------------------------------------------------]  31%
  4028/12870 [==========================>------------------------------------------------------------]  31%
  4029/12870 [==========================>------------------------------------------------------------]  31%
  4030/12870 [==========================>------------------------------------------------------------]  31%
  4031/12870 [==========================>------------------------------------------------------------]  31%
  4032/12870 [==========================>------------------------------------------------------------]  31%
  4033/12870 [==========================>------------------------------------------------------------]  31%
  4034/12870 [==========================>------------------------------------------------------------]  31%
  4035/12870 [==========================>------------------------------------------------------------]  31%
  4036/12870 [==========================>------------------------------------------------------------]  31%
  4037/12870 [==========================>------------------------------------------------------------]  31%
  4038/12870 [==========================>------------------------------------------------------------]  31%
  4039/12870 [==========================>------------------------------------------------------------]  31%
  4040/12870 [==========================>------------------------------------------------------------]  31%
  4041/12870 [==========================>------------------------------------------------------------]  31%
  4042/12870 [==========================>------------------------------------------------------------]  31%
  4043/12870 [==========================>------------------------------------------------------------]  31%
  4044/12870 [==========================>------------------------------------------------------------]  31%
  4045/12870 [==========================>------------------------------------------------------------]  31%
  4046/12870 [==========================>------------------------------------------------------------]  31%
  4047/12870 [==========================>------------------------------------------------------------]  31%
  4048/12870 [==========================>------------------------------------------------------------]  31%
  4049/12870 [==========================>------------------------------------------------------------]  31%
  4050/12870 [==========================>------------------------------------------------------------]  31%
  4051/12870 [==========================>------------------------------------------------------------]  31%
  4052/12870 [==========================>------------------------------------------------------------]  31%
  4053/12870 [==========================>------------------------------------------------------------]  31%
  4054/12870 [==========================>------------------------------------------------------------]  31%
  4055/12870 [==========================>------------------------------------------------------------]  32%
  4056/12870 [==========================>------------------------------------------------------------]  32%
  4057/12870 [==========================>------------------------------------------------------------]  32%
  4058/12870 [==========================>------------------------------------------------------------]  32%
  4059/12870 [==========================>------------------------------------------------------------]  32%
  4060/12870 [==========================>------------------------------------------------------------]  32%
  4061/12870 [==========================>------------------------------------------------------------]  32%
  4062/12870 [==========================>------------------------------------------------------------]  32%
  4063/12870 [==========================>------------------------------------------------------------]  32%
  4064/12870 [==========================>------------------------------------------------------------]  32%
  4065/12870 [==========================>------------------------------------------------------------]  32%
  4066/12870 [==========================>------------------------------------------------------------]  32%
  4067/12870 [==========================>------------------------------------------------------------]  32%
  4068/12870 [==========================>------------------------------------------------------------]  32%
  4069/12870 [===========================>-----------------------------------------------------------]  32%
  4070/12870 [===========================>-----------------------------------------------------------]  32%
  4071/12870 [===========================>-----------------------------------------------------------]  32%
  4072/12870 [===========================>-----------------------------------------------------------]  32%
  4073/12870 [===========================>-----------------------------------------------------------]  32%
  4074/12870 [===========================>-----------------------------------------------------------]  32%
  4075/12870 [===========================>-----------------------------------------------------------]  32%
  4076/12870 [===========================>-----------------------------------------------------------]  32%
  4077/12870 [===========================>-----------------------------------------------------------]  32%
  4078/12870 [===========================>-----------------------------------------------------------]  32%
  4079/12870 [===========================>-----------------------------------------------------------]  32%
  4080/12870 [===========================>-----------------------------------------------------------]  32%
  4081/12870 [===========================>-----------------------------------------------------------]  32%
  4082/12870 [===========================>-----------------------------------------------------------]  32%
  4083/12870 [===========================>-----------------------------------------------------------]  32%
  4084/12870 [===========================>-----------------------------------------------------------]  32%
  4085/12870 [===========================>-----------------------------------------------------------]  32%
  4086/12870 [===========================>-----------------------------------------------------------]  32%
  4087/12870 [===========================>-----------------------------------------------------------]  32%
  4088/12870 [===========================>-----------------------------------------------------------]  32%
  4089/12870 [===========================>-----------------------------------------------------------]  32%
  4090/12870 [===========================>-----------------------------------------------------------]  32%
  4091/12870 [===========================>-----------------------------------------------------------]  32%
  4092/12870 [===========================>-----------------------------------------------------------]  32%
  4093/12870 [===========================>-----------------------------------------------------------]  32%
  4094/12870 [===========================>-----------------------------------------------------------]  32%
  4095/12870 [===========================>-----------------------------------------------------------]  32%
  4096/12870 [===========================>-----------------------------------------------------------]  32%
  4097/12870 [===========================>-----------------------------------------------------------]  32%
  4098/12870 [===========================>-----------------------------------------------------------]  32%
  4099/12870 [===========================>-----------------------------------------------------------]  32%
  4100/12870 [===========================>-----------------------------------------------------------]  32%
  4101/12870 [===========================>-----------------------------------------------------------]  32%
  4102/12870 [===========================>-----------------------------------------------------------]  32%
  4103/12870 [===========================>-----------------------------------------------------------]  32%
  4104/12870 [===========================>-----------------------------------------------------------]  32%
  4105/12870 [===========================>-----------------------------------------------------------]  32%
  4106/12870 [===========================>-----------------------------------------------------------]  32%
  4107/12870 [===========================>-----------------------------------------------------------]  32%
  4108/12870 [===========================>-----------------------------------------------------------]  32%
  4109/12870 [===========================>-----------------------------------------------------------]  32%
  4110/12870 [===========================>-----------------------------------------------------------]  32%
  4111/12870 [===========================>-----------------------------------------------------------]  32%
  4112/12870 [===========================>-----------------------------------------------------------]  32%
  4113/12870 [===========================>-----------------------------------------------------------]  32%
  4114/12870 [===========================>-----------------------------------------------------------]  32%
  4115/12870 [===========================>-----------------------------------------------------------]  32%
  4116/12870 [===========================>-----------------------------------------------------------]  32%
  4117/12870 [===========================>-----------------------------------------------------------]  32%
  4118/12870 [===========================>-----------------------------------------------------------]  32%
  4119/12870 [===========================>-----------------------------------------------------------]  32%
  4120/12870 [===========================>-----------------------------------------------------------]  32%
  4121/12870 [===========================>-----------------------------------------------------------]  32%
  4122/12870 [===========================>-----------------------------------------------------------]  32%
  4123/12870 [===========================>-----------------------------------------------------------]  32%
  4124/12870 [===========================>-----------------------------------------------------------]  32%
  4125/12870 [===========================>-----------------------------------------------------------]  32%
  4126/12870 [===========================>-----------------------------------------------------------]  32%
  4127/12870 [===========================>-----------------------------------------------------------]  32%
  4128/12870 [===========================>-----------------------------------------------------------]  32%
  4129/12870 [===========================>-----------------------------------------------------------]  32%
  4130/12870 [===========================>-----------------------------------------------------------]  32%
  4131/12870 [===========================>-----------------------------------------------------------]  32%
  4132/12870 [===========================>-----------------------------------------------------------]  32%
  4133/12870 [===========================>-----------------------------------------------------------]  32%
  4134/12870 [===========================>-----------------------------------------------------------]  32%
  4135/12870 [===========================>-----------------------------------------------------------]  32%
  4136/12870 [===========================>-----------------------------------------------------------]  32%
  4137/12870 [===========================>-----------------------------------------------------------]  32%
  4138/12870 [===========================>-----------------------------------------------------------]  32%
  4139/12870 [===========================>-----------------------------------------------------------]  32%
  4140/12870 [===========================>-----------------------------------------------------------]  32%
  4141/12870 [===========================>-----------------------------------------------------------]  32%
  4142/12870 [===========================>-----------------------------------------------------------]  32%
  4143/12870 [===========================>-----------------------------------------------------------]  32%
  4144/12870 [===========================>-----------------------------------------------------------]  32%
  4145/12870 [===========================>-----------------------------------------------------------]  32%
  4146/12870 [===========================>-----------------------------------------------------------]  32%
  4147/12870 [===========================>-----------------------------------------------------------]  32%
  4148/12870 [===========================>-----------------------------------------------------------]  32%
  4149/12870 [===========================>-----------------------------------------------------------]  32%
  4150/12870 [===========================>-----------------------------------------------------------]  32%
  4151/12870 [===========================>-----------------------------------------------------------]  32%
  4152/12870 [===========================>-----------------------------------------------------------]  32%
  4153/12870 [===========================>-----------------------------------------------------------]  32%
  4154/12870 [===========================>-----------------------------------------------------------]  32%
  4155/12870 [===========================>-----------------------------------------------------------]  32%
  4156/12870 [===========================>-----------------------------------------------------------]  32%
  4157/12870 [===========================>-----------------------------------------------------------]  32%
  4158/12870 [===========================>-----------------------------------------------------------]  32%
  4159/12870 [===========================>-----------------------------------------------------------]  32%
  4160/12870 [===========================>-----------------------------------------------------------]  32%
  4161/12870 [===========================>-----------------------------------------------------------]  32%
  4162/12870 [===========================>-----------------------------------------------------------]  32%
  4163/12870 [===========================>-----------------------------------------------------------]  32%
  4164/12870 [===========================>-----------------------------------------------------------]  32%
  4165/12870 [===========================>-----------------------------------------------------------]  32%
  4166/12870 [===========================>-----------------------------------------------------------]  32%
  4167/12870 [===========================>-----------------------------------------------------------]  32%
  4168/12870 [===========================>-----------------------------------------------------------]  32%
  4169/12870 [===========================>-----------------------------------------------------------]  32%
  4170/12870 [===========================>-----------------------------------------------------------]  32%
  4171/12870 [===========================>-----------------------------------------------------------]  32%
  4172/12870 [===========================>-----------------------------------------------------------]  32%
  4173/12870 [===========================>-----------------------------------------------------------]  32%
  4174/12870 [===========================>-----------------------------------------------------------]  32%
  4175/12870 [===========================>-----------------------------------------------------------]  32%
  4176/12870 [===========================>-----------------------------------------------------------]  32%
  4177/12870 [===========================>-----------------------------------------------------------]  32%
  4178/12870 [===========================>-----------------------------------------------------------]  32%
  4179/12870 [===========================>-----------------------------------------------------------]  32%
  4180/12870 [===========================>-----------------------------------------------------------]  32%
  4181/12870 [===========================>-----------------------------------------------------------]  32%
  4182/12870 [===========================>-----------------------------------------------------------]  32%
  4183/12870 [===========================>-----------------------------------------------------------]  33%
  4184/12870 [===========================>-----------------------------------------------------------]  33%
  4185/12870 [===========================>-----------------------------------------------------------]  33%
  4186/12870 [===========================>-----------------------------------------------------------]  33%
  4187/12870 [===========================>-----------------------------------------------------------]  33%
  4188/12870 [===========================>-----------------------------------------------------------]  33%
  4189/12870 [===========================>-----------------------------------------------------------]  33%
  4190/12870 [===========================>-----------------------------------------------------------]  33%
  4191/12870 [===========================>-----------------------------------------------------------]  33%
  4192/12870 [===========================>-----------------------------------------------------------]  33%
  4193/12870 [===========================>-----------------------------------------------------------]  33%
  4194/12870 [===========================>-----------------------------------------------------------]  33%
  4195/12870 [===========================>-----------------------------------------------------------]  33%
  4196/12870 [===========================>-----------------------------------------------------------]  33%
  4197/12870 [===========================>-----------------------------------------------------------]  33%
  4198/12870 [===========================>-----------------------------------------------------------]  33%
  4199/12870 [===========================>-----------------------------------------------------------]  33%
  4200/12870 [===========================>-----------------------------------------------------------]  33%
  4201/12870 [===========================>-----------------------------------------------------------]  33%
  4202/12870 [===========================>-----------------------------------------------------------]  33%
  4203/12870 [===========================>-----------------------------------------------------------]  33%
  4204/12870 [===========================>-----------------------------------------------------------]  33%
  4205/12870 [===========================>-----------------------------------------------------------]  33%
  4206/12870 [===========================>-----------------------------------------------------------]  33%
  4207/12870 [===========================>-----------------------------------------------------------]  33%
  4208/12870 [===========================>-----------------------------------------------------------]  33%
  4209/12870 [===========================>-----------------------------------------------------------]  33%
  4210/12870 [===========================>-----------------------------------------------------------]  33%
  4211/12870 [===========================>-----------------------------------------------------------]  33%
  4212/12870 [===========================>-----------------------------------------------------------]  33%
  4213/12870 [===========================>-----------------------------------------------------------]  33%
  4214/12870 [===========================>-----------------------------------------------------------]  33%
  4215/12870 [===========================>-----------------------------------------------------------]  33%
  4216/12870 [===========================>-----------------------------------------------------------]  33%
  4217/12870 [============================>----------------------------------------------------------]  33%
  4218/12870 [============================>----------------------------------------------------------]  33%
  4219/12870 [============================>----------------------------------------------------------]  33%
  4220/12870 [============================>----------------------------------------------------------]  33%
  4221/12870 [============================>----------------------------------------------------------]  33%
  4222/12870 [============================>----------------------------------------------------------]  33%
  4223/12870 [============================>----------------------------------------------------------]  33%
  4224/12870 [============================>----------------------------------------------------------]  33%
  4225/12870 [============================>----------------------------------------------------------]  33%
  4226/12870 [============================>----------------------------------------------------------]  33%
  4227/12870 [============================>----------------------------------------------------------]  33%
  4228/12870 [============================>----------------------------------------------------------]  33%
  4229/12870 [============================>----------------------------------------------------------]  33%
  4230/12870 [============================>----------------------------------------------------------]  33%
  4231/12870 [============================>----------------------------------------------------------]  33%
  4232/12870 [============================>----------------------------------------------------------]  33%
  4233/12870 [============================>----------------------------------------------------------]  33%
  4234/12870 [============================>----------------------------------------------------------]  33%
  4235/12870 [============================>----------------------------------------------------------]  33%
  4236/12870 [============================>----------------------------------------------------------]  33%
  4237/12870 [============================>----------------------------------------------------------]  33%
  4238/12870 [============================>----------------------------------------------------------]  33%
  4239/12870 [============================>----------------------------------------------------------]  33%
  4240/12870 [============================>----------------------------------------------------------]  33%
  4241/12870 [============================>----------------------------------------------------------]  33%
  4242/12870 [============================>----------------------------------------------------------]  33%
  4243/12870 [============================>----------------------------------------------------------]  33%
  4244/12870 [============================>----------------------------------------------------------]  33%
  4245/12870 [============================>----------------------------------------------------------]  33%
  4246/12870 [============================>----------------------------------------------------------]  33%
  4247/12870 [============================>----------------------------------------------------------]  33%
  4248/12870 [============================>----------------------------------------------------------]  33%
  4249/12870 [============================>----------------------------------------------------------]  33%
  4250/12870 [============================>----------------------------------------------------------]  33%
  4251/12870 [============================>----------------------------------------------------------]  33%
  4252/12870 [============================>----------------------------------------------------------]  33%
  4253/12870 [============================>----------------------------------------------------------]  33%
  4254/12870 [============================>----------------------------------------------------------]  33%
  4255/12870 [============================>----------------------------------------------------------]  33%
  4256/12870 [============================>----------------------------------------------------------]  33%
  4257/12870 [============================>----------------------------------------------------------]  33%
  4258/12870 [============================>----------------------------------------------------------]  33%
  4259/12870 [============================>----------------------------------------------------------]  33%
  4260/12870 [============================>----------------------------------------------------------]  33%
  4261/12870 [============================>----------------------------------------------------------]  33%
  4262/12870 [============================>----------------------------------------------------------]  33%
  4263/12870 [============================>----------------------------------------------------------]  33%
  4264/12870 [============================>----------------------------------------------------------]  33%
  4265/12870 [============================>----------------------------------------------------------]  33%
  4266/12870 [============================>----------------------------------------------------------]  33%
  4267/12870 [============================>----------------------------------------------------------]  33%
  4268/12870 [============================>----------------------------------------------------------]  33%
  4269/12870 [============================>----------------------------------------------------------]  33%
  4270/12870 [============================>----------------------------------------------------------]  33%
  4271/12870 [============================>----------------------------------------------------------]  33%
  4272/12870 [============================>----------------------------------------------------------]  33%
  4273/12870 [============================>----------------------------------------------------------]  33%
  4274/12870 [============================>----------------------------------------------------------]  33%
  4275/12870 [============================>----------------------------------------------------------]  33%
  4276/12870 [============================>----------------------------------------------------------]  33%
  4277/12870 [============================>----------------------------------------------------------]  33%
  4278/12870 [============================>----------------------------------------------------------]  33%
  4279/12870 [============================>----------------------------------------------------------]  33%
  4280/12870 [============================>----------------------------------------------------------]  33%
  4281/12870 [============================>----------------------------------------------------------]  33%
  4282/12870 [============================>----------------------------------------------------------]  33%
  4283/12870 [============================>----------------------------------------------------------]  33%
  4284/12870 [============================>----------------------------------------------------------]  33%
  4285/12870 [============================>----------------------------------------------------------]  33%
  4286/12870 [============================>----------------------------------------------------------]  33%
  4287/12870 [============================>----------------------------------------------------------]  33%
  4288/12870 [============================>----------------------------------------------------------]  33%
  4289/12870 [============================>----------------------------------------------------------]  33%
  4290/12870 [============================>----------------------------------------------------------]  33%
  4291/12870 [============================>----------------------------------------------------------]  33%
  4292/12870 [============================>----------------------------------------------------------]  33%
  4293/12870 [============================>----------------------------------------------------------]  33%
  4294/12870 [============================>----------------------------------------------------------]  33%
  4295/12870 [============================>----------------------------------------------------------]  33%
  4296/12870 [============================>----------------------------------------------------------]  33%
  4297/12870 [============================>----------------------------------------------------------]  33%
  4298/12870 [============================>----------------------------------------------------------]  33%
  4299/12870 [============================>----------------------------------------------------------]  33%
  4300/12870 [============================>----------------------------------------------------------]  33%
  4301/12870 [============================>----------------------------------------------------------]  33%
  4302/12870 [============================>----------------------------------------------------------]  33%
  4303/12870 [============================>----------------------------------------------------------]  33%
  4304/12870 [============================>----------------------------------------------------------]  33%
  4305/12870 [============================>----------------------------------------------------------]  33%
  4306/12870 [============================>----------------------------------------------------------]  33%
  4307/12870 [============================>----------------------------------------------------------]  33%
  4308/12870 [============================>----------------------------------------------------------]  33%
  4309/12870 [============================>----------------------------------------------------------]  33%
  4310/12870 [============================>----------------------------------------------------------]  33%
  4311/12870 [============================>----------------------------------------------------------]  33%
  4312/12870 [============================>----------------------------------------------------------]  34%
  4313/12870 [============================>----------------------------------------------------------]  34%
  4314/12870 [============================>----------------------------------------------------------]  34%
  4315/12870 [============================>----------------------------------------------------------]  34%
  4316/12870 [============================>----------------------------------------------------------]  34%
  4317/12870 [============================>----------------------------------------------------------]  34%
  4318/12870 [============================>----------------------------------------------------------]  34%
  4319/12870 [============================>----------------------------------------------------------]  34%
  4320/12870 [============================>----------------------------------------------------------]  34%
  4321/12870 [============================>----------------------------------------------------------]  34%
  4322/12870 [============================>----------------------------------------------------------]  34%
  4323/12870 [============================>----------------------------------------------------------]  34%
  4324/12870 [============================>----------------------------------------------------------]  34%
  4325/12870 [============================>----------------------------------------------------------]  34%
  4326/12870 [============================>----------------------------------------------------------]  34%
  4327/12870 [============================>----------------------------------------------------------]  34%
  4328/12870 [============================>----------------------------------------------------------]  34%
  4329/12870 [============================>----------------------------------------------------------]  34%
  4330/12870 [============================>----------------------------------------------------------]  34%
  4331/12870 [============================>----------------------------------------------------------]  34%
  4332/12870 [============================>----------------------------------------------------------]  34%
  4333/12870 [============================>----------------------------------------------------------]  34%
  4334/12870 [============================>----------------------------------------------------------]  34%
  4335/12870 [============================>----------------------------------------------------------]  34%
  4336/12870 [============================>----------------------------------------------------------]  34%
  4337/12870 [============================>----------------------------------------------------------]  34%
  4338/12870 [============================>----------------------------------------------------------]  34%
  4339/12870 [============================>----------------------------------------------------------]  34%
  4340/12870 [============================>----------------------------------------------------------]  34%
  4341/12870 [============================>----------------------------------------------------------]  34%
  4342/12870 [============================>----------------------------------------------------------]  34%
  4343/12870 [============================>----------------------------------------------------------]  34%
  4344/12870 [============================>----------------------------------------------------------]  34%
  4345/12870 [============================>----------------------------------------------------------]  34%
  4346/12870 [============================>----------------------------------------------------------]  34%
  4347/12870 [============================>----------------------------------------------------------]  34%
  4348/12870 [============================>----------------------------------------------------------]  34%
  4349/12870 [============================>----------------------------------------------------------]  34%
  4350/12870 [============================>----------------------------------------------------------]  34%
  4351/12870 [============================>----------------------------------------------------------]  34%
  4352/12870 [============================>----------------------------------------------------------]  34%
  4353/12870 [============================>----------------------------------------------------------]  34%
  4354/12870 [============================>----------------------------------------------------------]  34%
  4355/12870 [============================>----------------------------------------------------------]  34%
  4356/12870 [============================>----------------------------------------------------------]  34%
  4357/12870 [============================>----------------------------------------------------------]  34%
  4358/12870 [============================>----------------------------------------------------------]  34%
  4359/12870 [============================>----------------------------------------------------------]  34%
  4360/12870 [============================>----------------------------------------------------------]  34%
  4361/12870 [============================>----------------------------------------------------------]  34%
  4362/12870 [============================>----------------------------------------------------------]  34%
  4363/12870 [============================>----------------------------------------------------------]  34%
  4364/12870 [=============================>---------------------------------------------------------]  34%
  4365/12870 [=============================>---------------------------------------------------------]  34%
  4366/12870 [=============================>---------------------------------------------------------]  34%
  4367/12870 [=============================>---------------------------------------------------------]  34%
  4368/12870 [=============================>---------------------------------------------------------]  34%
  4369/12870 [=============================>---------------------------------------------------------]  34%
  4370/12870 [=============================>---------------------------------------------------------]  34%
  4371/12870 [=============================>---------------------------------------------------------]  34%
  4372/12870 [=============================>---------------------------------------------------------]  34%
  4373/12870 [=============================>---------------------------------------------------------]  34%
  4374/12870 [=============================>---------------------------------------------------------]  34%
  4375/12870 [=============================>---------------------------------------------------------]  34%
  4376/12870 [=============================>---------------------------------------------------------]  34%
  4377/12870 [=============================>---------------------------------------------------------]  34%
  4378/12870 [=============================>---------------------------------------------------------]  34%
  4379/12870 [=============================>---------------------------------------------------------]  34%
  4380/12870 [=============================>---------------------------------------------------------]  34%
  4381/12870 [=============================>---------------------------------------------------------]  34%
  4382/12870 [=============================>---------------------------------------------------------]  34%
  4383/12870 [=============================>---------------------------------------------------------]  34%
  4384/12870 [=============================>---------------------------------------------------------]  34%
  4385/12870 [=============================>---------------------------------------------------------]  34%
  4386/12870 [=============================>---------------------------------------------------------]  34%
  4387/12870 [=============================>---------------------------------------------------------]  34%
  4388/12870 [=============================>---------------------------------------------------------]  34%
  4389/12870 [=============================>---------------------------------------------------------]  34%
  4390/12870 [=============================>---------------------------------------------------------]  34%
  4391/12870 [=============================>---------------------------------------------------------]  34%
  4392/12870 [=============================>---------------------------------------------------------]  34%
  4393/12870 [=============================>---------------------------------------------------------]  34%
  4394/12870 [=============================>---------------------------------------------------------]  34%
  4395/12870 [=============================>---------------------------------------------------------]  34%
  4396/12870 [=============================>---------------------------------------------------------]  34%
  4397/12870 [=============================>---------------------------------------------------------]  34%
  4398/12870 [=============================>---------------------------------------------------------]  34%
  4399/12870 [=============================>---------------------------------------------------------]  34%
  4400/12870 [=============================>---------------------------------------------------------]  34%
  4401/12870 [=============================>---------------------------------------------------------]  34%
  4402/12870 [=============================>---------------------------------------------------------]  34%
  4403/12870 [=============================>---------------------------------------------------------]  34%
  4404/12870 [=============================>---------------------------------------------------------]  34%
  4405/12870 [=============================>---------------------------------------------------------]  34%
  4406/12870 [=============================>---------------------------------------------------------]  34%
  4407/12870 [=============================>---------------------------------------------------------]  34%
  4408/12870 [=============================>---------------------------------------------------------]  34%
  4409/12870 [=============================>---------------------------------------------------------]  34%
  4410/12870 [=============================>---------------------------------------------------------]  34%
  4411/12870 [=============================>---------------------------------------------------------]  34%
  4412/12870 [=============================>---------------------------------------------------------]  34%
  4413/12870 [=============================>---------------------------------------------------------]  34%
  4414/12870 [=============================>---------------------------------------------------------]  34%
  4415/12870 [=============================>---------------------------------------------------------]  34%
  4416/12870 [=============================>---------------------------------------------------------]  34%
  4417/12870 [=============================>---------------------------------------------------------]  34%
  4418/12870 [=============================>---------------------------------------------------------]  34%
  4419/12870 [=============================>---------------------------------------------------------]  34%
  4420/12870 [=============================>---------------------------------------------------------]  34%
  4421/12870 [=============================>---------------------------------------------------------]  34%
  4422/12870 [=============================>---------------------------------------------------------]  34%
  4423/12870 [=============================>---------------------------------------------------------]  34%
  4424/12870 [=============================>---------------------------------------------------------]  34%
  4425/12870 [=============================>---------------------------------------------------------]  34%
  4426/12870 [=============================>---------------------------------------------------------]  34%
  4427/12870 [=============================>---------------------------------------------------------]  34%
  4428/12870 [=============================>---------------------------------------------------------]  34%
  4429/12870 [=============================>---------------------------------------------------------]  34%
  4430/12870 [=============================>---------------------------------------------------------]  34%
  4431/12870 [=============================>---------------------------------------------------------]  34%
  4432/12870 [=============================>---------------------------------------------------------]  34%
  4433/12870 [=============================>---------------------------------------------------------]  34%
  4434/12870 [=============================>---------------------------------------------------------]  34%
  4435/12870 [=============================>---------------------------------------------------------]  34%
  4436/12870 [=============================>---------------------------------------------------------]  34%
  4437/12870 [=============================>---------------------------------------------------------]  34%
  4438/12870 [=============================>---------------------------------------------------------]  34%
  4439/12870 [=============================>---------------------------------------------------------]  34%
  4440/12870 [=============================>---------------------------------------------------------]  34%
  4441/12870 [=============================>---------------------------------------------------------]  35%
  4442/12870 [=============================>---------------------------------------------------------]  35%
  4443/12870 [=============================>---------------------------------------------------------]  35%
  4444/12870 [=============================>---------------------------------------------------------]  35%
  4445/12870 [=============================>---------------------------------------------------------]  35%
  4446/12870 [=============================>---------------------------------------------------------]  35%
  4447/12870 [=============================>---------------------------------------------------------]  35%
  4448/12870 [=============================>---------------------------------------------------------]  35%
  4449/12870 [=============================>---------------------------------------------------------]  35%
  4450/12870 [=============================>---------------------------------------------------------]  35%
  4451/12870 [=============================>---------------------------------------------------------]  35%
  4452/12870 [=============================>---------------------------------------------------------]  35%
  4453/12870 [=============================>---------------------------------------------------------]  35%
  4454/12870 [=============================>---------------------------------------------------------]  35%
  4455/12870 [=============================>---------------------------------------------------------]  35%
  4456/12870 [=============================>---------------------------------------------------------]  35%
  4457/12870 [=============================>---------------------------------------------------------]  35%
  4458/12870 [=============================>---------------------------------------------------------]  35%
  4459/12870 [=============================>---------------------------------------------------------]  35%
  4460/12870 [=============================>---------------------------------------------------------]  35%
  4461/12870 [=============================>---------------------------------------------------------]  35%
  4462/12870 [=============================>---------------------------------------------------------]  35%
  4463/12870 [=============================>---------------------------------------------------------]  35%
  4464/12870 [=============================>---------------------------------------------------------]  35%
  4465/12870 [=============================>---------------------------------------------------------]  35%
  4466/12870 [=============================>---------------------------------------------------------]  35%
  4467/12870 [=============================>---------------------------------------------------------]  35%
  4468/12870 [=============================>---------------------------------------------------------]  35%
  4469/12870 [=============================>---------------------------------------------------------]  35%
  4470/12870 [=============================>---------------------------------------------------------]  35%
  4471/12870 [=============================>---------------------------------------------------------]  35%
  4472/12870 [=============================>---------------------------------------------------------]  35%
  4473/12870 [=============================>---------------------------------------------------------]  35%
  4474/12870 [=============================>---------------------------------------------------------]  35%
  4475/12870 [=============================>---------------------------------------------------------]  35%
  4476/12870 [=============================>---------------------------------------------------------]  35%
  4477/12870 [=============================>---------------------------------------------------------]  35%
  4478/12870 [=============================>---------------------------------------------------------]  35%
  4479/12870 [=============================>---------------------------------------------------------]  35%
  4480/12870 [=============================>---------------------------------------------------------]  35%
  4481/12870 [=============================>---------------------------------------------------------]  35%
  4482/12870 [=============================>---------------------------------------------------------]  35%
  4483/12870 [=============================>---------------------------------------------------------]  35%
  4484/12870 [=============================>---------------------------------------------------------]  35%
  4485/12870 [=============================>---------------------------------------------------------]  35%
  4486/12870 [=============================>---------------------------------------------------------]  35%
  4487/12870 [=============================>---------------------------------------------------------]  35%
  4488/12870 [=============================>---------------------------------------------------------]  35%
  4489/12870 [=============================>---------------------------------------------------------]  35%
  4490/12870 [=============================>---------------------------------------------------------]  35%
  4491/12870 [=============================>---------------------------------------------------------]  35%
  4492/12870 [=============================>---------------------------------------------------------]  35%
  4493/12870 [=============================>---------------------------------------------------------]  35%
  4494/12870 [=============================>---------------------------------------------------------]  35%
  4495/12870 [=============================>---------------------------------------------------------]  35%
  4496/12870 [=============================>---------------------------------------------------------]  35%
  4497/12870 [=============================>---------------------------------------------------------]  35%
  4498/12870 [=============================>---------------------------------------------------------]  35%
  4499/12870 [=============================>---------------------------------------------------------]  35%
  4500/12870 [=============================>---------------------------------------------------------]  35%
  4501/12870 [=============================>---------------------------------------------------------]  35%
  4502/12870 [=============================>---------------------------------------------------------]  35%
  4503/12870 [=============================>---------------------------------------------------------]  35%
  4504/12870 [=============================>---------------------------------------------------------]  35%
  4505/12870 [=============================>---------------------------------------------------------]  35%
  4506/12870 [=============================>---------------------------------------------------------]  35%
  4507/12870 [=============================>---------------------------------------------------------]  35%
  4508/12870 [=============================>---------------------------------------------------------]  35%
  4509/12870 [=============================>---------------------------------------------------------]  35%
  4510/12870 [=============================>---------------------------------------------------------]  35%
  4511/12870 [=============================>---------------------------------------------------------]  35%
  4512/12870 [==============================>--------------------------------------------------------]  35%
  4513/12870 [==============================>--------------------------------------------------------]  35%
  4514/12870 [==============================>--------------------------------------------------------]  35%
  4515/12870 [==============================>--------------------------------------------------------]  35%
  4516/12870 [==============================>--------------------------------------------------------]  35%
  4517/12870 [==============================>--------------------------------------------------------]  35%
  4518/12870 [==============================>--------------------------------------------------------]  35%
  4519/12870 [==============================>--------------------------------------------------------]  35%
  4520/12870 [==============================>--------------------------------------------------------]  35%
  4521/12870 [==============================>--------------------------------------------------------]  35%
  4522/12870 [==============================>--------------------------------------------------------]  35%
  4523/12870 [==============================>--------------------------------------------------------]  35%
  4524/12870 [==============================>--------------------------------------------------------]  35%
  4525/12870 [==============================>--------------------------------------------------------]  35%
  4526/12870 [==============================>--------------------------------------------------------]  35%
  4527/12870 [==============================>--------------------------------------------------------]  35%
  4528/12870 [==============================>--------------------------------------------------------]  35%
  4529/12870 [==============================>--------------------------------------------------------]  35%
  4530/12870 [==============================>--------------------------------------------------------]  35%
  4531/12870 [==============================>--------------------------------------------------------]  35%
  4532/12870 [==============================>--------------------------------------------------------]  35%
  4533/12870 [==============================>--------------------------------------------------------]  35%
  4534/12870 [==============================>--------------------------------------------------------]  35%
  4535/12870 [==============================>--------------------------------------------------------]  35%
  4536/12870 [==============================>--------------------------------------------------------]  35%
  4537/12870 [==============================>--------------------------------------------------------]  35%
  4538/12870 [==============================>--------------------------------------------------------]  35%
  4539/12870 [==============================>--------------------------------------------------------]  35%
  4540/12870 [==============================>--------------------------------------------------------]  35%
  4541/12870 [==============================>--------------------------------------------------------]  35%
  4542/12870 [==============================>--------------------------------------------------------]  35%
  4543/12870 [==============================>--------------------------------------------------------]  35%
  4544/12870 [==============================>--------------------------------------------------------]  35%
  4545/12870 [==============================>--------------------------------------------------------]  35%
  4546/12870 [==============================>--------------------------------------------------------]  35%
  4547/12870 [==============================>--------------------------------------------------------]  35%
  4548/12870 [==============================>--------------------------------------------------------]  35%
  4549/12870 [==============================>--------------------------------------------------------]  35%
  4550/12870 [==============================>--------------------------------------------------------]  35%
  4551/12870 [==============================>--------------------------------------------------------]  35%
  4552/12870 [==============================>--------------------------------------------------------]  35%
  4553/12870 [==============================>--------------------------------------------------------]  35%
  4554/12870 [==============================>--------------------------------------------------------]  35%
  4555/12870 [==============================>--------------------------------------------------------]  35%
  4556/12870 [==============================>--------------------------------------------------------]  35%
  4557/12870 [==============================>--------------------------------------------------------]  35%
  4558/12870 [==============================>--------------------------------------------------------]  35%
  4559/12870 [==============================>--------------------------------------------------------]  35%
  4560/12870 [==============================>--------------------------------------------------------]  35%
  4561/12870 [==============================>--------------------------------------------------------]  35%
  4562/12870 [==============================>--------------------------------------------------------]  35%
  4563/12870 [==============================>--------------------------------------------------------]  35%
  4564/12870 [==============================>--------------------------------------------------------]  35%
  4565/12870 [==============================>--------------------------------------------------------]  35%
  4566/12870 [==============================>--------------------------------------------------------]  35%
  4567/12870 [==============================>--------------------------------------------------------]  35%
  4568/12870 [==============================>--------------------------------------------------------]  35%
  4569/12870 [==============================>--------------------------------------------------------]  36%
  4570/12870 [==============================>--------------------------------------------------------]  36%
  4571/12870 [==============================>--------------------------------------------------------]  36%
  4572/12870 [==============================>--------------------------------------------------------]  36%
  4573/12870 [==============================>--------------------------------------------------------]  36%
  4574/12870 [==============================>--------------------------------------------------------]  36%
  4575/12870 [==============================>--------------------------------------------------------]  36%
  4576/12870 [==============================>--------------------------------------------------------]  36%
  4577/12870 [==============================>--------------------------------------------------------]  36%
  4578/12870 [==============================>--------------------------------------------------------]  36%
  4579/12870 [==============================>--------------------------------------------------------]  36%
  4580/12870 [==============================>--------------------------------------------------------]  36%
  4581/12870 [==============================>--------------------------------------------------------]  36%
  4582/12870 [==============================>--------------------------------------------------------]  36%
  4583/12870 [==============================>--------------------------------------------------------]  36%
  4584/12870 [==============================>--------------------------------------------------------]  36%
  4585/12870 [==============================>--------------------------------------------------------]  36%
  4586/12870 [==============================>--------------------------------------------------------]  36%
  4587/12870 [==============================>--------------------------------------------------------]  36%
  4588/12870 [==============================>--------------------------------------------------------]  36%
  4589/12870 [==============================>--------------------------------------------------------]  36%
  4590/12870 [==============================>--------------------------------------------------------]  36%
  4591/12870 [==============================>--------------------------------------------------------]  36%
  4592/12870 [==============================>--------------------------------------------------------]  36%
  4593/12870 [==============================>--------------------------------------------------------]  36%
  4594/12870 [==============================>--------------------------------------------------------]  36%
  4595/12870 [==============================>--------------------------------------------------------]  36%
  4596/12870 [==============================>--------------------------------------------------------]  36%
  4597/12870 [==============================>--------------------------------------------------------]  36%
  4598/12870 [==============================>--------------------------------------------------------]  36%
  4599/12870 [==============================>--------------------------------------------------------]  36%
  4600/12870 [==============================>--------------------------------------------------------]  36%
  4601/12870 [==============================>--------------------------------------------------------]  36%
  4602/12870 [==============================>--------------------------------------------------------]  36%
  4603/12870 [==============================>--------------------------------------------------------]  36%
  4604/12870 [==============================>--------------------------------------------------------]  36%
  4605/12870 [==============================>--------------------------------------------------------]  36%
  4606/12870 [==============================>--------------------------------------------------------]  36%
  4607/12870 [==============================>--------------------------------------------------------]  36%
  4608/12870 [==============================>--------------------------------------------------------]  36%
  4609/12870 [==============================>--------------------------------------------------------]  36%
  4610/12870 [==============================>--------------------------------------------------------]  36%
  4611/12870 [==============================>--------------------------------------------------------]  36%
  4612/12870 [==============================>--------------------------------------------------------]  36%
  4613/12870 [==============================>--------------------------------------------------------]  36%
  4614/12870 [==============================>--------------------------------------------------------]  36%
  4615/12870 [==============================>--------------------------------------------------------]  36%
  4616/12870 [==============================>--------------------------------------------------------]  36%
  4617/12870 [==============================>--------------------------------------------------------]  36%
  4618/12870 [==============================>--------------------------------------------------------]  36%
  4619/12870 [==============================>--------------------------------------------------------]  36%
  4620/12870 [==============================>--------------------------------------------------------]  36%
  4621/12870 [==============================>--------------------------------------------------------]  36%
  4622/12870 [==============================>--------------------------------------------------------]  36%
  4623/12870 [==============================>--------------------------------------------------------]  36%
  4624/12870 [==============================>--------------------------------------------------------]  36%
  4625/12870 [==============================>--------------------------------------------------------]  36%
  4626/12870 [==============================>--------------------------------------------------------]  36%
  4627/12870 [==============================>--------------------------------------------------------]  36%
  4628/12870 [==============================>--------------------------------------------------------]  36%
  4629/12870 [==============================>--------------------------------------------------------]  36%
  4630/12870 [==============================>--------------------------------------------------------]  36%
  4631/12870 [==============================>--------------------------------------------------------]  36%
  4632/12870 [==============================>--------------------------------------------------------]  36%
  4633/12870 [==============================>--------------------------------------------------------]  36%
  4634/12870 [==============================>--------------------------------------------------------]  36%
  4635/12870 [==============================>--------------------------------------------------------]  36%
  4636/12870 [==============================>--------------------------------------------------------]  36%
  4637/12870 [==============================>--------------------------------------------------------]  36%
  4638/12870 [==============================>--------------------------------------------------------]  36%
  4639/12870 [==============================>--------------------------------------------------------]  36%
  4640/12870 [==============================>--------------------------------------------------------]  36%
  4641/12870 [==============================>--------------------------------------------------------]  36%
  4642/12870 [==============================>--------------------------------------------------------]  36%
  4643/12870 [==============================>--------------------------------------------------------]  36%
  4644/12870 [==============================>--------------------------------------------------------]  36%
  4645/12870 [==============================>--------------------------------------------------------]  36%
  4646/12870 [==============================>--------------------------------------------------------]  36%
  4647/12870 [==============================>--------------------------------------------------------]  36%
  4648/12870 [==============================>--------------------------------------------------------]  36%
  4649/12870 [==============================>--------------------------------------------------------]  36%
  4650/12870 [==============================>--------------------------------------------------------]  36%
  4651/12870 [==============================>--------------------------------------------------------]  36%
  4652/12870 [==============================>--------------------------------------------------------]  36%
  4653/12870 [==============================>--------------------------------------------------------]  36%
  4654/12870 [==============================>--------------------------------------------------------]  36%
  4655/12870 [==============================>--------------------------------------------------------]  36%
  4656/12870 [==============================>--------------------------------------------------------]  36%
  4657/12870 [==============================>--------------------------------------------------------]  36%
  4658/12870 [==============================>--------------------------------------------------------]  36%
  4659/12870 [==============================>--------------------------------------------------------]  36%
  4660/12870 [===============================>-------------------------------------------------------]  36%
  4661/12870 [===============================>-------------------------------------------------------]  36%
  4662/12870 [===============================>-------------------------------------------------------]  36%
  4663/12870 [===============================>-------------------------------------------------------]  36%
  4664/12870 [===============================>-------------------------------------------------------]  36%
  4665/12870 [===============================>-------------------------------------------------------]  36%
  4666/12870 [===============================>-------------------------------------------------------]  36%
  4667/12870 [===============================>-------------------------------------------------------]  36%
  4668/12870 [===============================>-------------------------------------------------------]  36%
  4669/12870 [===============================>-------------------------------------------------------]  36%
  4670/12870 [===============================>-------------------------------------------------------]  36%
  4671/12870 [===============================>-------------------------------------------------------]  36%
  4672/12870 [===============================>-------------------------------------------------------]  36%
  4673/12870 [===============================>-------------------------------------------------------]  36%
  4674/12870 [===============================>-------------------------------------------------------]  36%
  4675/12870 [===============================>-------------------------------------------------------]  36%
  4676/12870 [===============================>-------------------------------------------------------]  36%
  4677/12870 [===============================>-------------------------------------------------------]  36%
  4678/12870 [===============================>-------------------------------------------------------]  36%
  4679/12870 [===============================>-------------------------------------------------------]  36%
  4680/12870 [===============================>-------------------------------------------------------]  36%
  4681/12870 [===============================>-------------------------------------------------------]  36%
  4682/12870 [===============================>-------------------------------------------------------]  36%
  4683/12870 [===============================>-------------------------------------------------------]  36%
  4684/12870 [===============================>-------------------------------------------------------]  36%
  4685/12870 [===============================>-------------------------------------------------------]  36%
  4686/12870 [===============================>-------------------------------------------------------]  36%
  4687/12870 [===============================>-------------------------------------------------------]  36%
  4688/12870 [===============================>-------------------------------------------------------]  36%
  4689/12870 [===============================>-------------------------------------------------------]  36%
  4690/12870 [===============================>-------------------------------------------------------]  36%
  4691/12870 [===============================>-------------------------------------------------------]  36%
  4692/12870 [===============================>-------------------------------------------------------]  36%
  4693/12870 [===============================>-------------------------------------------------------]  36%
  4694/12870 [===============================>-------------------------------------------------------]  36%
  4695/12870 [===============================>-------------------------------------------------------]  36%
  4696/12870 [===============================>-------------------------------------------------------]  36%
  4697/12870 [===============================>-------------------------------------------------------]  36%
  4698/12870 [===============================>-------------------------------------------------------]  37%
  4699/12870 [===============================>-------------------------------------------------------]  37%
  4700/12870 [===============================>-------------------------------------------------------]  37%
  4701/12870 [===============================>-------------------------------------------------------]  37%
  4702/12870 [===============================>-------------------------------------------------------]  37%
  4703/12870 [===============================>-------------------------------------------------------]  37%
  4704/12870 [===============================>-------------------------------------------------------]  37%
  4705/12870 [===============================>-------------------------------------------------------]  37%
  4706/12870 [===============================>-------------------------------------------------------]  37%
  4707/12870 [===============================>-------------------------------------------------------]  37%
  4708/12870 [===============================>-------------------------------------------------------]  37%
  4709/12870 [===============================>-------------------------------------------------------]  37%
  4710/12870 [===============================>-------------------------------------------------------]  37%
  4711/12870 [===============================>-------------------------------------------------------]  37%
  4712/12870 [===============================>-------------------------------------------------------]  37%
  4713/12870 [===============================>-------------------------------------------------------]  37%
  4714/12870 [===============================>-------------------------------------------------------]  37%
  4715/12870 [===============================>-------------------------------------------------------]  37%
  4716/12870 [===============================>-------------------------------------------------------]  37%
  4717/12870 [===============================>-------------------------------------------------------]  37%
  4718/12870 [===============================>-------------------------------------------------------]  37%
  4719/12870 [===============================>-------------------------------------------------------]  37%
  4720/12870 [===============================>-------------------------------------------------------]  37%
  4721/12870 [===============================>-------------------------------------------------------]  37%
  4722/12870 [===============================>-------------------------------------------------------]  37%
  4723/12870 [===============================>-------------------------------------------------------]  37%
  4724/12870 [===============================>-------------------------------------------------------]  37%
  4725/12870 [===============================>-------------------------------------------------------]  37%
  4726/12870 [===============================>-------------------------------------------------------]  37%
  4727/12870 [===============================>-------------------------------------------------------]  37%
  4728/12870 [===============================>-------------------------------------------------------]  37%
  4729/12870 [===============================>-------------------------------------------------------]  37%
  4730/12870 [===============================>-------------------------------------------------------]  37%
  4731/12870 [===============================>-------------------------------------------------------]  37%
  4732/12870 [===============================>-------------------------------------------------------]  37%
  4733/12870 [===============================>-------------------------------------------------------]  37%
  4734/12870 [===============================>-------------------------------------------------------]  37%
  4735/12870 [===============================>-------------------------------------------------------]  37%
  4736/12870 [===============================>-------------------------------------------------------]  37%
  4737/12870 [===============================>-------------------------------------------------------]  37%
  4738/12870 [===============================>-------------------------------------------------------]  37%
  4739/12870 [===============================>-------------------------------------------------------]  37%
  4740/12870 [===============================>-------------------------------------------------------]  37%
  4741/12870 [===============================>-------------------------------------------------------]  37%
  4742/12870 [===============================>-------------------------------------------------------]  37%
  4743/12870 [===============================>-------------------------------------------------------]  37%
  4744/12870 [===============================>-------------------------------------------------------]  37%
  4745/12870 [===============================>-------------------------------------------------------]  37%
  4746/12870 [===============================>-------------------------------------------------------]  37%
  4747/12870 [===============================>-------------------------------------------------------]  37%
  4748/12870 [===============================>-------------------------------------------------------]  37%
  4749/12870 [===============================>-------------------------------------------------------]  37%
  4750/12870 [===============================>-------------------------------------------------------]  37%
  4751/12870 [===============================>-------------------------------------------------------]  37%
  4752/12870 [===============================>-------------------------------------------------------]  37%
  4753/12870 [===============================>-------------------------------------------------------]  37%
  4754/12870 [===============================>-------------------------------------------------------]  37%
  4755/12870 [===============================>-------------------------------------------------------]  37%
  4756/12870 [===============================>-------------------------------------------------------]  37%
  4757/12870 [===============================>-------------------------------------------------------]  37%
  4758/12870 [===============================>-------------------------------------------------------]  37%
  4759/12870 [===============================>-------------------------------------------------------]  37%
  4760/12870 [===============================>-------------------------------------------------------]  37%
  4761/12870 [===============================>-------------------------------------------------------]  37%
  4762/12870 [===============================>-------------------------------------------------------]  37%
  4763/12870 [===============================>-------------------------------------------------------]  37%
  4764/12870 [===============================>-------------------------------------------------------]  37%
  4765/12870 [===============================>-------------------------------------------------------]  37%
  4766/12870 [===============================>-------------------------------------------------------]  37%
  4767/12870 [===============================>-------------------------------------------------------]  37%
  4768/12870 [===============================>-------------------------------------------------------]  37%
  4769/12870 [===============================>-------------------------------------------------------]  37%
  4770/12870 [===============================>-------------------------------------------------------]  37%
  4771/12870 [===============================>-------------------------------------------------------]  37%
  4772/12870 [===============================>-------------------------------------------------------]  37%
  4773/12870 [===============================>-------------------------------------------------------]  37%
  4774/12870 [===============================>-------------------------------------------------------]  37%
  4775/12870 [===============================>-------------------------------------------------------]  37%
  4776/12870 [===============================>-------------------------------------------------------]  37%
  4777/12870 [===============================>-------------------------------------------------------]  37%
  4778/12870 [===============================>-------------------------------------------------------]  37%
  4779/12870 [===============================>-------------------------------------------------------]  37%
  4780/12870 [===============================>-------------------------------------------------------]  37%
  4781/12870 [===============================>-------------------------------------------------------]  37%
  4782/12870 [===============================>-------------------------------------------------------]  37%
  4783/12870 [===============================>-------------------------------------------------------]  37%
  4784/12870 [===============================>-------------------------------------------------------]  37%
  4785/12870 [===============================>-------------------------------------------------------]  37%
  4786/12870 [===============================>-------------------------------------------------------]  37%
  4787/12870 [===============================>-------------------------------------------------------]  37%
  4788/12870 [===============================>-------------------------------------------------------]  37%
  4789/12870 [===============================>-------------------------------------------------------]  37%
  4790/12870 [===============================>-------------------------------------------------------]  37%
  4791/12870 [===============================>-------------------------------------------------------]  37%
  4792/12870 [===============================>-------------------------------------------------------]  37%
  4793/12870 [===============================>-------------------------------------------------------]  37%
  4794/12870 [===============================>-------------------------------------------------------]  37%
  4795/12870 [===============================>-------------------------------------------------------]  37%
  4796/12870 [===============================>-------------------------------------------------------]  37%
  4797/12870 [===============================>-------------------------------------------------------]  37%
  4798/12870 [===============================>-------------------------------------------------------]  37%
  4799/12870 [===============================>-------------------------------------------------------]  37%
  4800/12870 [===============================>-------------------------------------------------------]  37%
  4801/12870 [===============================>-------------------------------------------------------]  37%
  4802/12870 [===============================>-------------------------------------------------------]  37%
  4803/12870 [===============================>-------------------------------------------------------]  37%
  4804/12870 [===============================>-------------------------------------------------------]  37%
  4805/12870 [===============================>-------------------------------------------------------]  37%
  4806/12870 [===============================>-------------------------------------------------------]  37%
  4807/12870 [===============================>-------------------------------------------------------]  37%
  4808/12870 [================================>------------------------------------------------------]  37%
  4809/12870 [================================>------------------------------------------------------]  37%
  4810/12870 [================================>------------------------------------------------------]  37%
  4811/12870 [================================>------------------------------------------------------]  37%
  4812/12870 [================================>------------------------------------------------------]  37%
  4813/12870 [================================>------------------------------------------------------]  37%
  4814/12870 [================================>------------------------------------------------------]  37%
  4815/12870 [================================>------------------------------------------------------]  37%
  4816/12870 [================================>------------------------------------------------------]  37%
  4817/12870 [================================>------------------------------------------------------]  37%
  4818/12870 [================================>------------------------------------------------------]  37%
  4819/12870 [================================>------------------------------------------------------]  37%
  4820/12870 [================================>------------------------------------------------------]  37%
  4821/12870 [================================>------------------------------------------------------]  37%
  4822/12870 [================================>------------------------------------------------------]  37%
  4823/12870 [================================>------------------------------------------------------]  37%
  4824/12870 [================================>------------------------------------------------------]  37%
  4825/12870 [================================>------------------------------------------------------]  37%
  4826/12870 [================================>------------------------------------------------------]  37%
  4827/12870 [================================>------------------------------------------------------]  38%
  4828/12870 [================================>------------------------------------------------------]  38%
  4829/12870 [================================>------------------------------------------------------]  38%
  4830/12870 [================================>------------------------------------------------------]  38%
  4831/12870 [================================>------------------------------------------------------]  38%
  4832/12870 [================================>------------------------------------------------------]  38%
  4833/12870 [================================>------------------------------------------------------]  38%
  4834/12870 [================================>------------------------------------------------------]  38%
  4835/12870 [================================>------------------------------------------------------]  38%
  4836/12870 [================================>------------------------------------------------------]  38%
  4837/12870 [================================>------------------------------------------------------]  38%
  4838/12870 [================================>------------------------------------------------------]  38%
  4839/12870 [================================>------------------------------------------------------]  38%
  4840/12870 [================================>------------------------------------------------------]  38%
  4841/12870 [================================>------------------------------------------------------]  38%
  4842/12870 [================================>------------------------------------------------------]  38%
  4843/12870 [================================>------------------------------------------------------]  38%
  4844/12870 [================================>------------------------------------------------------]  38%
  4845/12870 [================================>------------------------------------------------------]  38%
  4846/12870 [================================>------------------------------------------------------]  38%
  4847/12870 [================================>------------------------------------------------------]  38%
  4848/12870 [================================>------------------------------------------------------]  38%
  4849/12870 [================================>------------------------------------------------------]  38%
  4850/12870 [================================>------------------------------------------------------]  38%
  4851/12870 [================================>------------------------------------------------------]  38%
  4852/12870 [================================>------------------------------------------------------]  38%
  4853/12870 [================================>------------------------------------------------------]  38%
  4854/12870 [================================>------------------------------------------------------]  38%
  4855/12870 [================================>------------------------------------------------------]  38%
  4856/12870 [================================>------------------------------------------------------]  38%
  4857/12870 [================================>------------------------------------------------------]  38%
  4858/12870 [================================>------------------------------------------------------]  38%
  4859/12870 [================================>------------------------------------------------------]  38%
  4860/12870 [================================>------------------------------------------------------]  38%
  4861/12870 [================================>------------------------------------------------------]  38%
  4862/12870 [================================>------------------------------------------------------]  38%
  4863/12870 [================================>------------------------------------------------------]  38%
  4864/12870 [================================>------------------------------------------------------]  38%
  4865/12870 [================================>------------------------------------------------------]  38%
  4866/12870 [================================>------------------------------------------------------]  38%
  4867/12870 [================================>------------------------------------------------------]  38%
  4868/12870 [================================>------------------------------------------------------]  38%
  4869/12870 [================================>------------------------------------------------------]  38%
  4870/12870 [================================>------------------------------------------------------]  38%
  4871/12870 [================================>------------------------------------------------------]  38%
  4872/12870 [================================>------------------------------------------------------]  38%
  4873/12870 [================================>------------------------------------------------------]  38%
  4874/12870 [================================>------------------------------------------------------]  38%
  4875/12870 [================================>------------------------------------------------------]  38%
  4876/12870 [================================>------------------------------------------------------]  38%
  4877/12870 [================================>------------------------------------------------------]  38%
  4878/12870 [================================>------------------------------------------------------]  38%
  4879/12870 [================================>------------------------------------------------------]  38%
  4880/12870 [================================>------------------------------------------------------]  38%
  4881/12870 [================================>------------------------------------------------------]  38%
  4882/12870 [================================>------------------------------------------------------]  38%
  4883/12870 [================================>------------------------------------------------------]  38%
  4884/12870 [================================>------------------------------------------------------]  38%
  4885/12870 [================================>------------------------------------------------------]  38%
  4886/12870 [================================>------------------------------------------------------]  38%
  4887/12870 [================================>------------------------------------------------------]  38%
  4888/12870 [================================>------------------------------------------------------]  38%
  4889/12870 [================================>------------------------------------------------------]  38%
  4890/12870 [================================>------------------------------------------------------]  38%
  4891/12870 [================================>------------------------------------------------------]  38%
  4892/12870 [================================>------------------------------------------------------]  38%
  4893/12870 [================================>------------------------------------------------------]  38%
  4894/12870 [================================>------------------------------------------------------]  38%
  4895/12870 [================================>------------------------------------------------------]  38%
  4896/12870 [================================>------------------------------------------------------]  38%
  4897/12870 [================================>------------------------------------------------------]  38%
  4898/12870 [================================>------------------------------------------------------]  38%
  4899/12870 [================================>------------------------------------------------------]  38%
  4900/12870 [================================>------------------------------------------------------]  38%
  4901/12870 [================================>------------------------------------------------------]  38%
  4902/12870 [================================>------------------------------------------------------]  38%
  4903/12870 [================================>------------------------------------------------------]  38%
  4904/12870 [================================>------------------------------------------------------]  38%
  4905/12870 [================================>------------------------------------------------------]  38%
  4906/12870 [================================>------------------------------------------------------]  38%
  4907/12870 [================================>------------------------------------------------------]  38%
  4908/12870 [================================>------------------------------------------------------]  38%
  4909/12870 [================================>------------------------------------------------------]  38%
  4910/12870 [================================>------------------------------------------------------]  38%
  4911/12870 [================================>------------------------------------------------------]  38%
  4912/12870 [================================>------------------------------------------------------]  38%
  4913/12870 [================================>------------------------------------------------------]  38%
  4914/12870 [================================>------------------------------------------------------]  38%
  4915/12870 [================================>------------------------------------------------------]  38%
  4916/12870 [================================>------------------------------------------------------]  38%
  4917/12870 [================================>------------------------------------------------------]  38%
  4918/12870 [================================>------------------------------------------------------]  38%
  4919/12870 [================================>------------------------------------------------------]  38%
  4920/12870 [================================>------------------------------------------------------]  38%
  4921/12870 [================================>------------------------------------------------------]  38%
  4922/12870 [================================>------------------------------------------------------]  38%
  4923/12870 [================================>------------------------------------------------------]  38%
  4924/12870 [================================>------------------------------------------------------]  38%
  4925/12870 [================================>------------------------------------------------------]  38%
  4926/12870 [================================>------------------------------------------------------]  38%
  4927/12870 [================================>------------------------------------------------------]  38%
  4928/12870 [================================>------------------------------------------------------]  38%
  4929/12870 [================================>------------------------------------------------------]  38%
  4930/12870 [================================>------------------------------------------------------]  38%
  4931/12870 [================================>------------------------------------------------------]  38%
  4932/12870 [================================>------------------------------------------------------]  38%
  4933/12870 [================================>------------------------------------------------------]  38%
  4934/12870 [================================>------------------------------------------------------]  38%
  4935/12870 [================================>------------------------------------------------------]  38%
  4936/12870 [================================>------------------------------------------------------]  38%
  4937/12870 [================================>------------------------------------------------------]  38%
  4938/12870 [================================>------------------------------------------------------]  38%
  4939/12870 [================================>------------------------------------------------------]  38%
  4940/12870 [================================>------------------------------------------------------]  38%
  4941/12870 [================================>------------------------------------------------------]  38%
  4942/12870 [================================>------------------------------------------------------]  38%
  4943/12870 [================================>------------------------------------------------------]  38%
  4944/12870 [================================>------------------------------------------------------]  38%
  4945/12870 [================================>------------------------------------------------------]  38%
  4946/12870 [================================>------------------------------------------------------]  38%
  4947/12870 [================================>------------------------------------------------------]  38%
  4948/12870 [================================>------------------------------------------------------]  38%
  4949/12870 [================================>------------------------------------------------------]  38%
  4950/12870 [================================>------------------------------------------------------]  38%
  4951/12870 [================================>------------------------------------------------------]  38%
  4952/12870 [================================>------------------------------------------------------]  38%
  4953/12870 [================================>------------------------------------------------------]  38%
  4954/12870 [================================>------------------------------------------------------]  38%
  4955/12870 [================================>------------------------------------------------------]  39%
  4956/12870 [=================================>-----------------------------------------------------]  39%
  4957/12870 [=================================>-----------------------------------------------------]  39%
  4958/12870 [=================================>-----------------------------------------------------]  39%
  4959/12870 [=================================>-----------------------------------------------------]  39%
  4960/12870 [=================================>-----------------------------------------------------]  39%
  4961/12870 [=================================>-----------------------------------------------------]  39%
  4962/12870 [=================================>-----------------------------------------------------]  39%
  4963/12870 [=================================>-----------------------------------------------------]  39%
  4964/12870 [=================================>-----------------------------------------------------]  39%
  4965/12870 [=================================>-----------------------------------------------------]  39%
  4966/12870 [=================================>-----------------------------------------------------]  39%
  4967/12870 [=================================>-----------------------------------------------------]  39%
  4968/12870 [=================================>-----------------------------------------------------]  39%
  4969/12870 [=================================>-----------------------------------------------------]  39%
  4970/12870 [=================================>-----------------------------------------------------]  39%
  4971/12870 [=================================>-----------------------------------------------------]  39%
  4972/12870 [=================================>-----------------------------------------------------]  39%
  4973/12870 [=================================>-----------------------------------------------------]  39%
  4974/12870 [=================================>-----------------------------------------------------]  39%
  4975/12870 [=================================>-----------------------------------------------------]  39%
  4976/12870 [=================================>-----------------------------------------------------]  39%
  4977/12870 [=================================>-----------------------------------------------------]  39%
  4978/12870 [=================================>-----------------------------------------------------]  39%
  4979/12870 [=================================>-----------------------------------------------------]  39%
  4980/12870 [=================================>-----------------------------------------------------]  39%
  4981/12870 [=================================>-----------------------------------------------------]  39%
  4982/12870 [=================================>-----------------------------------------------------]  39%
  4983/12870 [=================================>-----------------------------------------------------]  39%
  4984/12870 [=================================>-----------------------------------------------------]  39%
  4985/12870 [=================================>-----------------------------------------------------]  39%
  4986/12870 [=================================>-----------------------------------------------------]  39%
  4987/12870 [=================================>-----------------------------------------------------]  39%
  4988/12870 [=================================>-----------------------------------------------------]  39%
  4989/12870 [=================================>-----------------------------------------------------]  39%
  4990/12870 [=================================>-----------------------------------------------------]  39%
  4991/12870 [=================================>-----------------------------------------------------]  39%
  4992/12870 [=================================>-----------------------------------------------------]  39%
  4993/12870 [=================================>-----------------------------------------------------]  39%
  4994/12870 [=================================>-----------------------------------------------------]  39%
  4995/12870 [=================================>-----------------------------------------------------]  39%
  4996/12870 [=================================>-----------------------------------------------------]  39%
  4997/12870 [=================================>-----------------------------------------------------]  39%
  4998/12870 [=================================>-----------------------------------------------------]  39%
  4999/12870 [=================================>-----------------------------------------------------]  39%
  5000/12870 [=================================>-----------------------------------------------------]  39%
  5001/12870 [=================================>-----------------------------------------------------]  39%
  5002/12870 [=================================>-----------------------------------------------------]  39%
  5003/12870 [=================================>-----------------------------------------------------]  39%
  5004/12870 [=================================>-----------------------------------------------------]  39%
  5005/12870 [=================================>-----------------------------------------------------]  39%
  5006/12870 [=================================>-----------------------------------------------------]  39%
  5007/12870 [=================================>-----------------------------------------------------]  39%
  5008/12870 [=================================>-----------------------------------------------------]  39%
  5009/12870 [=================================>-----------------------------------------------------]  39%
  5010/12870 [=================================>-----------------------------------------------------]  39%
  5011/12870 [=================================>-----------------------------------------------------]  39%
  5012/12870 [=================================>-----------------------------------------------------]  39%
  5013/12870 [=================================>-----------------------------------------------------]  39%
  5014/12870 [=================================>-----------------------------------------------------]  39%
  5015/12870 [=================================>-----------------------------------------------------]  39%
  5016/12870 [=================================>-----------------------------------------------------]  39%
  5017/12870 [=================================>-----------------------------------------------------]  39%
  5018/12870 [=================================>-----------------------------------------------------]  39%
  5019/12870 [=================================>-----------------------------------------------------]  39%
  5020/12870 [=================================>-----------------------------------------------------]  39%
  5021/12870 [=================================>-----------------------------------------------------]  39%
  5022/12870 [=================================>-----------------------------------------------------]  39%
  5023/12870 [=================================>-----------------------------------------------------]  39%
  5024/12870 [=================================>-----------------------------------------------------]  39%
  5025/12870 [=================================>-----------------------------------------------------]  39%
  5026/12870 [=================================>-----------------------------------------------------]  39%
  5027/12870 [=================================>-----------------------------------------------------]  39%
  5028/12870 [=================================>-----------------------------------------------------]  39%
  5029/12870 [=================================>-----------------------------------------------------]  39%
  5030/12870 [=================================>-----------------------------------------------------]  39%
  5031/12870 [=================================>-----------------------------------------------------]  39%
  5032/12870 [=================================>-----------------------------------------------------]  39%
  5033/12870 [=================================>-----------------------------------------------------]  39%
  5034/12870 [=================================>-----------------------------------------------------]  39%
  5035/12870 [=================================>-----------------------------------------------------]  39%
  5036/12870 [=================================>-----------------------------------------------------]  39%
  5037/12870 [=================================>-----------------------------------------------------]  39%
  5038/12870 [=================================>-----------------------------------------------------]  39%
  5039/12870 [=================================>-----------------------------------------------------]  39%
  5040/12870 [=================================>-----------------------------------------------------]  39%
  5041/12870 [=================================>-----------------------------------------------------]  39%
  5042/12870 [=================================>-----------------------------------------------------]  39%
  5043/12870 [=================================>-----------------------------------------------------]  39%
  5044/12870 [=================================>-----------------------------------------------------]  39%
  5045/12870 [=================================>-----------------------------------------------------]  39%
  5046/12870 [=================================>-----------------------------------------------------]  39%
  5047/12870 [=================================>-----------------------------------------------------]  39%
  5048/12870 [=================================>-----------------------------------------------------]  39%
  5049/12870 [=================================>-----------------------------------------------------]  39%
  5050/12870 [=================================>-----------------------------------------------------]  39%
  5051/12870 [=================================>-----------------------------------------------------]  39%
  5052/12870 [=================================>-----------------------------------------------------]  39%
  5053/12870 [=================================>-----------------------------------------------------]  39%
  5054/12870 [=================================>-----------------------------------------------------]  39%
  5055/12870 [=================================>-----------------------------------------------------]  39%
  5056/12870 [=================================>-----------------------------------------------------]  39%
  5057/12870 [=================================>-----------------------------------------------------]  39%
  5058/12870 [=================================>-----------------------------------------------------]  39%
  5059/12870 [=================================>-----------------------------------------------------]  39%
  5060/12870 [=================================>-----------------------------------------------------]  39%
  5061/12870 [=================================>-----------------------------------------------------]  39%
  5062/12870 [=================================>-----------------------------------------------------]  39%
  5063/12870 [=================================>-----------------------------------------------------]  39%
  5064/12870 [=================================>-----------------------------------------------------]  39%
  5065/12870 [=================================>-----------------------------------------------------]  39%
  5066/12870 [=================================>-----------------------------------------------------]  39%
  5067/12870 [=================================>-----------------------------------------------------]  39%
  5068/12870 [=================================>-----------------------------------------------------]  39%
  5069/12870 [=================================>-----------------------------------------------------]  39%
  5070/12870 [=================================>-----------------------------------------------------]  39%
  5071/12870 [=================================>-----------------------------------------------------]  39%
  5072/12870 [=================================>-----------------------------------------------------]  39%
  5073/12870 [=================================>-----------------------------------------------------]  39%
  5074/12870 [=================================>-----------------------------------------------------]  39%
  5075/12870 [=================================>-----------------------------------------------------]  39%
  5076/12870 [=================================>-----------------------------------------------------]  39%
  5077/12870 [=================================>-----------------------------------------------------]  39%
  5078/12870 [=================================>-----------------------------------------------------]  39%
  5079/12870 [=================================>-----------------------------------------------------]  39%
  5080/12870 [=================================>-----------------------------------------------------]  39%
  5081/12870 [=================================>-----------------------------------------------------]  39%
  5082/12870 [=================================>-----------------------------------------------------]  39%
  5083/12870 [=================================>-----------------------------------------------------]  39%
  5084/12870 [=================================>-----------------------------------------------------]  40%
  5085/12870 [=================================>-----------------------------------------------------]  40%
  5086/12870 [=================================>-----------------------------------------------------]  40%
  5087/12870 [=================================>-----------------------------------------------------]  40%
  5088/12870 [=================================>-----------------------------------------------------]  40%
  5089/12870 [=================================>-----------------------------------------------------]  40%
  5090/12870 [=================================>-----------------------------------------------------]  40%
  5091/12870 [=================================>-----------------------------------------------------]  40%
  5092/12870 [=================================>-----------------------------------------------------]  40%
  5093/12870 [=================================>-----------------------------------------------------]  40%
  5094/12870 [=================================>-----------------------------------------------------]  40%
  5095/12870 [=================================>-----------------------------------------------------]  40%
  5096/12870 [=================================>-----------------------------------------------------]  40%
  5097/12870 [=================================>-----------------------------------------------------]  40%
  5098/12870 [=================================>-----------------------------------------------------]  40%
  5099/12870 [=================================>-----------------------------------------------------]  40%
  5100/12870 [=================================>-----------------------------------------------------]  40%
  5101/12870 [=================================>-----------------------------------------------------]  40%
  5102/12870 [=================================>-----------------------------------------------------]  40%
  5103/12870 [=================================>-----------------------------------------------------]  40%
  5104/12870 [==================================>----------------------------------------------------]  40%
  5105/12870 [==================================>----------------------------------------------------]  40%
  5106/12870 [==================================>----------------------------------------------------]  40%
  5107/12870 [==================================>----------------------------------------------------]  40%
  5108/12870 [==================================>----------------------------------------------------]  40%
  5109/12870 [==================================>----------------------------------------------------]  40%
  5110/12870 [==================================>----------------------------------------------------]  40%
  5111/12870 [==================================>----------------------------------------------------]  40%
  5112/12870 [==================================>----------------------------------------------------]  40%
  5113/12870 [==================================>----------------------------------------------------]  40%
  5114/12870 [==================================>----------------------------------------------------]  40%
  5115/12870 [==================================>----------------------------------------------------]  40%
  5116/12870 [==================================>----------------------------------------------------]  40%
  5117/12870 [==================================>----------------------------------------------------]  40%
  5118/12870 [==================================>----------------------------------------------------]  40%
  5119/12870 [==================================>----------------------------------------------------]  40%
  5120/12870 [==================================>----------------------------------------------------]  40%
  5121/12870 [==================================>----------------------------------------------------]  40%
  5122/12870 [==================================>----------------------------------------------------]  40%
  5123/12870 [==================================>----------------------------------------------------]  40%
  5124/12870 [==================================>----------------------------------------------------]  40%
  5125/12870 [==================================>----------------------------------------------------]  40%
  5126/12870 [==================================>----------------------------------------------------]  40%
  5127/12870 [==================================>----------------------------------------------------]  40%
  5128/12870 [==================================>----------------------------------------------------]  40%
  5129/12870 [==================================>----------------------------------------------------]  40%
  5130/12870 [==================================>----------------------------------------------------]  40%
  5131/12870 [==================================>----------------------------------------------------]  40%
  5132/12870 [==================================>----------------------------------------------------]  40%
  5133/12870 [==================================>----------------------------------------------------]  40%
  5134/12870 [==================================>----------------------------------------------------]  40%
  5135/12870 [==================================>----------------------------------------------------]  40%
  5136/12870 [==================================>----------------------------------------------------]  40%
  5137/12870 [==================================>----------------------------------------------------]  40%
  5138/12870 [==================================>----------------------------------------------------]  40%
  5139/12870 [==================================>----------------------------------------------------]  40%
  5140/12870 [==================================>----------------------------------------------------]  40%
  5141/12870 [==================================>----------------------------------------------------]  40%
  5142/12870 [==================================>----------------------------------------------------]  40%
  5143/12870 [==================================>----------------------------------------------------]  40%
  5144/12870 [==================================>----------------------------------------------------]  40%
  5145/12870 [==================================>----------------------------------------------------]  40%
  5146/12870 [==================================>----------------------------------------------------]  40%
  5147/12870 [==================================>----------------------------------------------------]  40%
  5148/12870 [==================================>----------------------------------------------------]  40%
  5149/12870 [==================================>----------------------------------------------------]  40%
  5150/12870 [==================================>----------------------------------------------------]  40%
  5151/12870 [==================================>----------------------------------------------------]  40%
  5152/12870 [==================================>----------------------------------------------------]  40%
  5153/12870 [==================================>----------------------------------------------------]  40%
  5154/12870 [==================================>----------------------------------------------------]  40%
  5155/12870 [==================================>----------------------------------------------------]  40%
  5156/12870 [==================================>----------------------------------------------------]  40%
  5157/12870 [==================================>----------------------------------------------------]  40%
  5158/12870 [==================================>----------------------------------------------------]  40%
  5159/12870 [==================================>----------------------------------------------------]  40%
  5160/12870 [==================================>----------------------------------------------------]  40%
  5161/12870 [==================================>----------------------------------------------------]  40%
  5162/12870 [==================================>----------------------------------------------------]  40%
  5163/12870 [==================================>----------------------------------------------------]  40%
  5164/12870 [==================================>----------------------------------------------------]  40%
  5165/12870 [==================================>----------------------------------------------------]  40%
  5166/12870 [==================================>----------------------------------------------------]  40%
  5167/12870 [==================================>----------------------------------------------------]  40%
  5168/12870 [==================================>----------------------------------------------------]  40%
  5169/12870 [==================================>----------------------------------------------------]  40%
  5170/12870 [==================================>----------------------------------------------------]  40%
  5171/12870 [==================================>----------------------------------------------------]  40%
  5172/12870 [==================================>----------------------------------------------------]  40%
  5173/12870 [==================================>----------------------------------------------------]  40%
  5174/12870 [==================================>----------------------------------------------------]  40%
  5175/12870 [==================================>----------------------------------------------------]  40%
  5176/12870 [==================================>----------------------------------------------------]  40%
  5177/12870 [==================================>----------------------------------------------------]  40%
  5178/12870 [==================================>----------------------------------------------------]  40%
  5179/12870 [==================================>----------------------------------------------------]  40%
  5180/12870 [==================================>----------------------------------------------------]  40%
  5181/12870 [==================================>----------------------------------------------------]  40%
  5182/12870 [==================================>----------------------------------------------------]  40%
  5183/12870 [==================================>----------------------------------------------------]  40%
  5184/12870 [==================================>----------------------------------------------------]  40%
  5185/12870 [==================================>----------------------------------------------------]  40%
  5186/12870 [==================================>----------------------------------------------------]  40%
  5187/12870 [==================================>----------------------------------------------------]  40%
  5188/12870 [==================================>----------------------------------------------------]  40%
  5189/12870 [==================================>----------------------------------------------------]  40%
  5190/12870 [==================================>----------------------------------------------------]  40%
  5191/12870 [==================================>----------------------------------------------------]  40%
  5192/12870 [==================================>----------------------------------------------------]  40%
  5193/12870 [==================================>----------------------------------------------------]  40%
  5194/12870 [==================================>----------------------------------------------------]  40%
  5195/12870 [==================================>----------------------------------------------------]  40%
  5196/12870 [==================================>----------------------------------------------------]  40%
  5197/12870 [==================================>----------------------------------------------------]  40%
  5198/12870 [==================================>----------------------------------------------------]  40%
  5199/12870 [==================================>----------------------------------------------------]  40%
  5200/12870 [==================================>----------------------------------------------------]  40%
  5201/12870 [==================================>----------------------------------------------------]  40%
  5202/12870 [==================================>----------------------------------------------------]  40%
  5203/12870 [==================================>----------------------------------------------------]  40%
  5204/12870 [==================================>----------------------------------------------------]  40%
  5205/12870 [==================================>----------------------------------------------------]  40%
  5206/12870 [==================================>----------------------------------------------------]  40%
  5207/12870 [==================================>----------------------------------------------------]  40%
  5208/12870 [==================================>----------------------------------------------------]  40%
  5209/12870 [==================================>----------------------------------------------------]  40%
  5210/12870 [==================================>----------------------------------------------------]  40%
  5211/12870 [==================================>----------------------------------------------------]  40%
  5212/12870 [==================================>----------------------------------------------------]  40%
  5213/12870 [==================================>----------------------------------------------------]  41%
  5214/12870 [==================================>----------------------------------------------------]  41%
  5215/12870 [==================================>----------------------------------------------------]  41%
  5216/12870 [==================================>----------------------------------------------------]  41%
  5217/12870 [==================================>----------------------------------------------------]  41%
  5218/12870 [==================================>----------------------------------------------------]  41%
  5219/12870 [==================================>----------------------------------------------------]  41%
  5220/12870 [==================================>----------------------------------------------------]  41%
  5221/12870 [==================================>----------------------------------------------------]  41%
  5222/12870 [==================================>----------------------------------------------------]  41%
  5223/12870 [==================================>----------------------------------------------------]  41%
  5224/12870 [==================================>----------------------------------------------------]  41%
  5225/12870 [==================================>----------------------------------------------------]  41%
  5226/12870 [==================================>----------------------------------------------------]  41%
  5227/12870 [==================================>----------------------------------------------------]  41%
  5228/12870 [==================================>----------------------------------------------------]  41%
  5229/12870 [==================================>----------------------------------------------------]  41%
  5230/12870 [==================================>----------------------------------------------------]  41%
  5231/12870 [==================================>----------------------------------------------------]  41%
  5232/12870 [==================================>----------------------------------------------------]  41%
  5233/12870 [==================================>----------------------------------------------------]  41%
  5234/12870 [==================================>----------------------------------------------------]  41%
  5235/12870 [==================================>----------------------------------------------------]  41%
  5236/12870 [==================================>----------------------------------------------------]  41%
  5237/12870 [==================================>----------------------------------------------------]  41%
  5238/12870 [==================================>----------------------------------------------------]  41%
  5239/12870 [==================================>----------------------------------------------------]  41%
  5240/12870 [==================================>----------------------------------------------------]  41%
  5241/12870 [==================================>----------------------------------------------------]  41%
  5242/12870 [==================================>----------------------------------------------------]  41%
  5243/12870 [==================================>----------------------------------------------------]  41%
  5244/12870 [==================================>----------------------------------------------------]  41%
  5245/12870 [==================================>----------------------------------------------------]  41%
  5246/12870 [==================================>----------------------------------------------------]  41%
  5247/12870 [==================================>----------------------------------------------------]  41%
  5248/12870 [==================================>----------------------------------------------------]  41%
  5249/12870 [==================================>----------------------------------------------------]  41%
  5250/12870 [==================================>----------------------------------------------------]  41%
  5251/12870 [==================================>----------------------------------------------------]  41%
  5252/12870 [===================================>---------------------------------------------------]  41%
  5253/12870 [===================================>---------------------------------------------------]  41%
  5254/12870 [===================================>---------------------------------------------------]  41%
  5255/12870 [===================================>---------------------------------------------------]  41%
  5256/12870 [===================================>---------------------------------------------------]  41%
  5257/12870 [===================================>---------------------------------------------------]  41%
  5258/12870 [===================================>---------------------------------------------------]  41%
  5259/12870 [===================================>---------------------------------------------------]  41%
  5260/12870 [===================================>---------------------------------------------------]  41%
  5261/12870 [===================================>---------------------------------------------------]  41%
  5262/12870 [===================================>---------------------------------------------------]  41%
  5263/12870 [===================================>---------------------------------------------------]  41%
  5264/12870 [===================================>---------------------------------------------------]  41%
  5265/12870 [===================================>---------------------------------------------------]  41%
  5266/12870 [===================================>---------------------------------------------------]  41%
  5267/12870 [===================================>---------------------------------------------------]  41%
  5268/12870 [===================================>---------------------------------------------------]  41%
  5269/12870 [===================================>---------------------------------------------------]  41%
  5270/12870 [===================================>---------------------------------------------------]  41%
  5271/12870 [===================================>---------------------------------------------------]  41%
  5272/12870 [===================================>---------------------------------------------------]  41%
  5273/12870 [===================================>---------------------------------------------------]  41%
  5274/12870 [===================================>---------------------------------------------------]  41%
  5275/12870 [===================================>---------------------------------------------------]  41%
  5276/12870 [===================================>---------------------------------------------------]  41%
  5277/12870 [===================================>---------------------------------------------------]  41%
  5278/12870 [===================================>---------------------------------------------------]  41%
  5279/12870 [===================================>---------------------------------------------------]  41%
  5280/12870 [===================================>---------------------------------------------------]  41%
  5281/12870 [===================================>---------------------------------------------------]  41%
  5282/12870 [===================================>---------------------------------------------------]  41%
  5283/12870 [===================================>---------------------------------------------------]  41%
  5284/12870 [===================================>---------------------------------------------------]  41%
  5285/12870 [===================================>---------------------------------------------------]  41%
  5286/12870 [===================================>---------------------------------------------------]  41%
  5287/12870 [===================================>---------------------------------------------------]  41%
  5288/12870 [===================================>---------------------------------------------------]  41%
  5289/12870 [===================================>---------------------------------------------------]  41%
  5290/12870 [===================================>---------------------------------------------------]  41%
  5291/12870 [===================================>---------------------------------------------------]  41%
  5292/12870 [===================================>---------------------------------------------------]  41%
  5293/12870 [===================================>---------------------------------------------------]  41%
  5294/12870 [===================================>---------------------------------------------------]  41%
  5295/12870 [===================================>---------------------------------------------------]  41%
  5296/12870 [===================================>---------------------------------------------------]  41%
  5297/12870 [===================================>---------------------------------------------------]  41%
  5298/12870 [===================================>---------------------------------------------------]  41%
  5299/12870 [===================================>---------------------------------------------------]  41%
  5300/12870 [===================================>---------------------------------------------------]  41%
  5301/12870 [===================================>---------------------------------------------------]  41%
  5302/12870 [===================================>---------------------------------------------------]  41%
  5303/12870 [===================================>---------------------------------------------------]  41%
  5304/12870 [===================================>---------------------------------------------------]  41%
  5305/12870 [===================================>---------------------------------------------------]  41%
  5306/12870 [===================================>---------------------------------------------------]  41%
  5307/12870 [===================================>---------------------------------------------------]  41%
  5308/12870 [===================================>---------------------------------------------------]  41%
  5309/12870 [===================================>---------------------------------------------------]  41%
  5310/12870 [===================================>---------------------------------------------------]  41%
  5311/12870 [===================================>---------------------------------------------------]  41%
  5312/12870 [===================================>---------------------------------------------------]  41%
  5313/12870 [===================================>---------------------------------------------------]  41%
  5314/12870 [===================================>---------------------------------------------------]  41%
  5315/12870 [===================================>---------------------------------------------------]  41%
  5316/12870 [===================================>---------------------------------------------------]  41%
  5317/12870 [===================================>---------------------------------------------------]  41%
  5318/12870 [===================================>---------------------------------------------------]  41%
  5319/12870 [===================================>---------------------------------------------------]  41%
  5320/12870 [===================================>---------------------------------------------------]  41%
  5321/12870 [===================================>---------------------------------------------------]  41%
  5322/12870 [===================================>---------------------------------------------------]  41%
  5323/12870 [===================================>---------------------------------------------------]  41%
  5324/12870 [===================================>---------------------------------------------------]  41%
  5325/12870 [===================================>---------------------------------------------------]  41%
  5326/12870 [===================================>---------------------------------------------------]  41%
  5327/12870 [===================================>---------------------------------------------------]  41%
  5328/12870 [===================================>---------------------------------------------------]  41%
  5329/12870 [===================================>---------------------------------------------------]  41%
  5330/12870 [===================================>---------------------------------------------------]  41%
  5331/12870 [===================================>---------------------------------------------------]  41%
  5332/12870 [===================================>---------------------------------------------------]  41%
  5333/12870 [===================================>---------------------------------------------------]  41%
  5334/12870 [===================================>---------------------------------------------------]  41%
  5335/12870 [===================================>---------------------------------------------------]  41%
  5336/12870 [===================================>---------------------------------------------------]  41%
  5337/12870 [===================================>---------------------------------------------------]  41%
  5338/12870 [===================================>---------------------------------------------------]  41%
  5339/12870 [===================================>---------------------------------------------------]  41%
  5340/12870 [===================================>---------------------------------------------------]  41%
  5341/12870 [===================================>---------------------------------------------------]  41%
  5342/12870 [===================================>---------------------------------------------------]  42%
  5343/12870 [===================================>---------------------------------------------------]  42%
  5344/12870 [===================================>---------------------------------------------------]  42%
  5345/12870 [===================================>---------------------------------------------------]  42%
  5346/12870 [===================================>---------------------------------------------------]  42%
  5347/12870 [===================================>---------------------------------------------------]  42%
  5348/12870 [===================================>---------------------------------------------------]  42%
  5349/12870 [===================================>---------------------------------------------------]  42%
  5350/12870 [===================================>---------------------------------------------------]  42%
  5351/12870 [===================================>---------------------------------------------------]  42%
  5352/12870 [===================================>---------------------------------------------------]  42%
  5353/12870 [===================================>---------------------------------------------------]  42%
  5354/12870 [===================================>---------------------------------------------------]  42%
  5355/12870 [===================================>---------------------------------------------------]  42%
  5356/12870 [===================================>---------------------------------------------------]  42%
  5357/12870 [===================================>---------------------------------------------------]  42%
  5358/12870 [===================================>---------------------------------------------------]  42%
  5359/12870 [===================================>---------------------------------------------------]  42%
  5360/12870 [===================================>---------------------------------------------------]  42%
  5361/12870 [===================================>---------------------------------------------------]  42%
  5362/12870 [===================================>---------------------------------------------------]  42%
  5363/12870 [===================================>---------------------------------------------------]  42%
  5364/12870 [===================================>---------------------------------------------------]  42%
  5365/12870 [===================================>---------------------------------------------------]  42%
  5366/12870 [===================================>---------------------------------------------------]  42%
  5367/12870 [===================================>---------------------------------------------------]  42%
  5368/12870 [===================================>---------------------------------------------------]  42%
  5369/12870 [===================================>---------------------------------------------------]  42%
  5370/12870 [===================================>---------------------------------------------------]  42%
  5371/12870 [===================================>---------------------------------------------------]  42%
  5372/12870 [===================================>---------------------------------------------------]  42%
  5373/12870 [===================================>---------------------------------------------------]  42%
  5374/12870 [===================================>---------------------------------------------------]  42%
  5375/12870 [===================================>---------------------------------------------------]  42%
  5376/12870 [===================================>---------------------------------------------------]  42%
  5377/12870 [===================================>---------------------------------------------------]  42%
  5378/12870 [===================================>---------------------------------------------------]  42%
  5379/12870 [===================================>---------------------------------------------------]  42%
  5380/12870 [===================================>---------------------------------------------------]  42%
  5381/12870 [===================================>---------------------------------------------------]  42%
  5382/12870 [===================================>---------------------------------------------------]  42%
  5383/12870 [===================================>---------------------------------------------------]  42%
  5384/12870 [===================================>---------------------------------------------------]  42%
  5385/12870 [===================================>---------------------------------------------------]  42%
  5386/12870 [===================================>---------------------------------------------------]  42%
  5387/12870 [===================================>---------------------------------------------------]  42%
  5388/12870 [===================================>---------------------------------------------------]  42%
  5389/12870 [===================================>---------------------------------------------------]  42%
  5390/12870 [===================================>---------------------------------------------------]  42%
  5391/12870 [===================================>---------------------------------------------------]  42%
  5392/12870 [===================================>---------------------------------------------------]  42%
  5393/12870 [===================================>---------------------------------------------------]  42%
  5394/12870 [===================================>---------------------------------------------------]  42%
  5395/12870 [===================================>---------------------------------------------------]  42%
  5396/12870 [===================================>---------------------------------------------------]  42%
  5397/12870 [===================================>---------------------------------------------------]  42%
  5398/12870 [===================================>---------------------------------------------------]  42%
  5399/12870 [===================================>---------------------------------------------------]  42%
  5400/12870 [====================================>--------------------------------------------------]  42%
  5401/12870 [====================================>--------------------------------------------------]  42%
  5402/12870 [====================================>--------------------------------------------------]  42%
  5403/12870 [====================================>--------------------------------------------------]  42%
  5404/12870 [====================================>--------------------------------------------------]  42%
  5405/12870 [====================================>--------------------------------------------------]  42%
  5406/12870 [====================================>--------------------------------------------------]  42%
  5407/12870 [====================================>--------------------------------------------------]  42%
  5408/12870 [====================================>--------------------------------------------------]  42%
  5409/12870 [====================================>--------------------------------------------------]  42%
  5410/12870 [====================================>--------------------------------------------------]  42%
  5411/12870 [====================================>--------------------------------------------------]  42%
  5412/12870 [====================================>--------------------------------------------------]  42%
  5413/12870 [====================================>--------------------------------------------------]  42%
  5414/12870 [====================================>--------------------------------------------------]  42%
  5415/12870 [====================================>--------------------------------------------------]  42%
  5416/12870 [====================================>--------------------------------------------------]  42%
  5417/12870 [====================================>--------------------------------------------------]  42%
  5418/12870 [====================================>--------------------------------------------------]  42%
  5419/12870 [====================================>--------------------------------------------------]  42%
  5420/12870 [====================================>--------------------------------------------------]  42%
  5421/12870 [====================================>--------------------------------------------------]  42%
  5422/12870 [====================================>--------------------------------------------------]  42%
  5423/12870 [====================================>--------------------------------------------------]  42%
  5424/12870 [====================================>--------------------------------------------------]  42%
  5425/12870 [====================================>--------------------------------------------------]  42%
  5426/12870 [====================================>--------------------------------------------------]  42%
  5427/12870 [====================================>--------------------------------------------------]  42%
  5428/12870 [====================================>--------------------------------------------------]  42%
  5429/12870 [====================================>--------------------------------------------------]  42%
  5430/12870 [====================================>--------------------------------------------------]  42%
  5431/12870 [====================================>--------------------------------------------------]  42%
  5432/12870 [====================================>--------------------------------------------------]  42%
  5433/12870 [====================================>--------------------------------------------------]  42%
  5434/12870 [====================================>--------------------------------------------------]  42%
  5435/12870 [====================================>--------------------------------------------------]  42%
  5436/12870 [====================================>--------------------------------------------------]  42%
  5437/12870 [====================================>--------------------------------------------------]  42%
  5438/12870 [====================================>--------------------------------------------------]  42%
  5439/12870 [====================================>--------------------------------------------------]  42%
  5440/12870 [====================================>--------------------------------------------------]  42%
  5441/12870 [====================================>--------------------------------------------------]  42%
  5442/12870 [====================================>--------------------------------------------------]  42%
  5443/12870 [====================================>--------------------------------------------------]  42%
  5444/12870 [====================================>--------------------------------------------------]  42%
  5445/12870 [====================================>--------------------------------------------------]  42%
  5446/12870 [====================================>--------------------------------------------------]  42%
  5447/12870 [====================================>--------------------------------------------------]  42%
  5448/12870 [====================================>--------------------------------------------------]  42%
  5449/12870 [====================================>--------------------------------------------------]  42%
  5450/12870 [====================================>--------------------------------------------------]  42%
  5451/12870 [====================================>--------------------------------------------------]  42%
  5452/12870 [====================================>--------------------------------------------------]  42%
  5453/12870 [====================================>--------------------------------------------------]  42%
  5454/12870 [====================================>--------------------------------------------------]  42%
  5455/12870 [====================================>--------------------------------------------------]  42%
  5456/12870 [====================================>--------------------------------------------------]  42%
  5457/12870 [====================================>--------------------------------------------------]  42%
  5458/12870 [====================================>--------------------------------------------------]  42%
  5459/12870 [====================================>--------------------------------------------------]  42%
  5460/12870 [====================================>--------------------------------------------------]  42%
  5461/12870 [====================================>--------------------------------------------------]  42%
  5462/12870 [====================================>--------------------------------------------------]  42%
  5463/12870 [====================================>--------------------------------------------------]  42%
  5464/12870 [====================================>--------------------------------------------------]  42%
  5465/12870 [====================================>--------------------------------------------------]  42%
  5466/12870 [====================================>--------------------------------------------------]  42%
  5467/12870 [====================================>--------------------------------------------------]  42%
  5468/12870 [====================================>--------------------------------------------------]  42%
  5469/12870 [====================================>--------------------------------------------------]  42%
  5470/12870 [====================================>--------------------------------------------------]  43%
  5471/12870 [====================================>--------------------------------------------------]  43%
  5472/12870 [====================================>--------------------------------------------------]  43%
  5473/12870 [====================================>--------------------------------------------------]  43%
  5474/12870 [====================================>--------------------------------------------------]  43%
  5475/12870 [====================================>--------------------------------------------------]  43%
  5476/12870 [====================================>--------------------------------------------------]  43%
  5477/12870 [====================================>--------------------------------------------------]  43%
  5478/12870 [====================================>--------------------------------------------------]  43%
  5479/12870 [====================================>--------------------------------------------------]  43%
  5480/12870 [====================================>--------------------------------------------------]  43%
  5481/12870 [====================================>--------------------------------------------------]  43%
  5482/12870 [====================================>--------------------------------------------------]  43%
  5483/12870 [====================================>--------------------------------------------------]  43%
  5484/12870 [====================================>--------------------------------------------------]  43%
  5485/12870 [====================================>--------------------------------------------------]  43%
  5486/12870 [====================================>--------------------------------------------------]  43%
  5487/12870 [====================================>--------------------------------------------------]  43%
  5488/12870 [====================================>--------------------------------------------------]  43%
  5489/12870 [====================================>--------------------------------------------------]  43%
  5490/12870 [====================================>--------------------------------------------------]  43%
  5491/12870 [====================================>--------------------------------------------------]  43%
  5492/12870 [====================================>--------------------------------------------------]  43%
  5493/12870 [====================================>--------------------------------------------------]  43%
  5494/12870 [====================================>--------------------------------------------------]  43%
  5495/12870 [====================================>--------------------------------------------------]  43%
  5496/12870 [====================================>--------------------------------------------------]  43%
  5497/12870 [====================================>--------------------------------------------------]  43%
  5498/12870 [====================================>--------------------------------------------------]  43%
  5499/12870 [====================================>--------------------------------------------------]  43%
  5500/12870 [====================================>--------------------------------------------------]  43%
  5501/12870 [====================================>--------------------------------------------------]  43%
  5502/12870 [====================================>--------------------------------------------------]  43%
  5503/12870 [====================================>--------------------------------------------------]  43%
  5504/12870 [====================================>--------------------------------------------------]  43%
  5505/12870 [====================================>--------------------------------------------------]  43%
  5506/12870 [====================================>--------------------------------------------------]  43%
  5507/12870 [====================================>--------------------------------------------------]  43%
  5508/12870 [====================================>--------------------------------------------------]  43%
  5509/12870 [====================================>--------------------------------------------------]  43%
  5510/12870 [====================================>--------------------------------------------------]  43%
  5511/12870 [====================================>--------------------------------------------------]  43%
  5512/12870 [====================================>--------------------------------------------------]  43%
  5513/12870 [====================================>--------------------------------------------------]  43%
  5514/12870 [====================================>--------------------------------------------------]  43%
  5515/12870 [====================================>--------------------------------------------------]  43%
  5516/12870 [====================================>--------------------------------------------------]  43%
  5517/12870 [====================================>--------------------------------------------------]  43%
  5518/12870 [====================================>--------------------------------------------------]  43%
  5519/12870 [====================================>--------------------------------------------------]  43%
  5520/12870 [====================================>--------------------------------------------------]  43%
  5521/12870 [====================================>--------------------------------------------------]  43%
  5522/12870 [====================================>--------------------------------------------------]  43%
  5523/12870 [====================================>--------------------------------------------------]  43%
  5524/12870 [====================================>--------------------------------------------------]  43%
  5525/12870 [====================================>--------------------------------------------------]  43%
  5526/12870 [====================================>--------------------------------------------------]  43%
  5527/12870 [====================================>--------------------------------------------------]  43%
  5528/12870 [====================================>--------------------------------------------------]  43%
  5529/12870 [====================================>--------------------------------------------------]  43%
  5530/12870 [====================================>--------------------------------------------------]  43%
  5531/12870 [====================================>--------------------------------------------------]  43%
  5532/12870 [====================================>--------------------------------------------------]  43%
  5533/12870 [====================================>--------------------------------------------------]  43%
  5534/12870 [====================================>--------------------------------------------------]  43%
  5535/12870 [====================================>--------------------------------------------------]  43%
  5536/12870 [====================================>--------------------------------------------------]  43%
  5537/12870 [====================================>--------------------------------------------------]  43%
  5538/12870 [====================================>--------------------------------------------------]  43%
  5539/12870 [====================================>--------------------------------------------------]  43%
  5540/12870 [====================================>--------------------------------------------------]  43%
  5541/12870 [====================================>--------------------------------------------------]  43%
  5542/12870 [====================================>--------------------------------------------------]  43%
  5543/12870 [====================================>--------------------------------------------------]  43%
  5544/12870 [====================================>--------------------------------------------------]  43%
  5545/12870 [====================================>--------------------------------------------------]  43%
  5546/12870 [====================================>--------------------------------------------------]  43%
  5547/12870 [====================================>--------------------------------------------------]  43%
  5548/12870 [=====================================>-------------------------------------------------]  43%
  5549/12870 [=====================================>-------------------------------------------------]  43%
  5550/12870 [=====================================>-------------------------------------------------]  43%
  5551/12870 [=====================================>-------------------------------------------------]  43%
  5552/12870 [=====================================>-------------------------------------------------]  43%
  5553/12870 [=====================================>-------------------------------------------------]  43%
  5554/12870 [=====================================>-------------------------------------------------]  43%
  5555/12870 [=====================================>-------------------------------------------------]  43%
  5556/12870 [=====================================>-------------------------------------------------]  43%
  5557/12870 [=====================================>-------------------------------------------------]  43%
  5558/12870 [=====================================>-------------------------------------------------]  43%
  5559/12870 [=====================================>-------------------------------------------------]  43%
  5560/12870 [=====================================>-------------------------------------------------]  43%
  5561/12870 [=====================================>-------------------------------------------------]  43%
  5562/12870 [=====================================>-------------------------------------------------]  43%
  5563/12870 [=====================================>-------------------------------------------------]  43%
  5564/12870 [=====================================>-------------------------------------------------]  43%
  5565/12870 [=====================================>-------------------------------------------------]  43%
  5566/12870 [=====================================>-------------------------------------------------]  43%
  5567/12870 [=====================================>-------------------------------------------------]  43%
  5568/12870 [=====================================>-------------------------------------------------]  43%
  5569/12870 [=====================================>-------------------------------------------------]  43%
  5570/12870 [=====================================>-------------------------------------------------]  43%
  5571/12870 [=====================================>-------------------------------------------------]  43%
  5572/12870 [=====================================>-------------------------------------------------]  43%
  5573/12870 [=====================================>-------------------------------------------------]  43%
  5574/12870 [=====================================>-------------------------------------------------]  43%
  5575/12870 [=====================================>-------------------------------------------------]  43%
  5576/12870 [=====================================>-------------------------------------------------]  43%
  5577/12870 [=====================================>-------------------------------------------------]  43%
  5578/12870 [=====================================>-------------------------------------------------]  43%
  5579/12870 [=====================================>-------------------------------------------------]  43%
  5580/12870 [=====================================>-------------------------------------------------]  43%
  5581/12870 [=====================================>-------------------------------------------------]  43%
  5582/12870 [=====================================>-------------------------------------------------]  43%
  5583/12870 [=====================================>-------------------------------------------------]  43%
  5584/12870 [=====================================>-------------------------------------------------]  43%
  5585/12870 [=====================================>-------------------------------------------------]  43%
  5586/12870 [=====================================>-------------------------------------------------]  43%
  5587/12870 [=====================================>-------------------------------------------------]  43%
  5588/12870 [=====================================>-------------------------------------------------]  43%
  5589/12870 [=====================================>-------------------------------------------------]  43%
  5590/12870 [=====================================>-------------------------------------------------]  43%
  5591/12870 [=====================================>-------------------------------------------------]  43%
  5592/12870 [=====================================>-------------------------------------------------]  43%
  5593/12870 [=====================================>-------------------------------------------------]  43%
  5594/12870 [=====================================>-------------------------------------------------]  43%
  5595/12870 [=====================================>-------------------------------------------------]  43%
  5596/12870 [=====================================>-------------------------------------------------]  43%
  5597/12870 [=====================================>-------------------------------------------------]  43%
  5598/12870 [=====================================>-------------------------------------------------]  43%
  5599/12870 [=====================================>-------------------------------------------------]  44%
  5600/12870 [=====================================>-------------------------------------------------]  44%
  5601/12870 [=====================================>-------------------------------------------------]  44%
  5602/12870 [=====================================>-------------------------------------------------]  44%
  5603/12870 [=====================================>-------------------------------------------------]  44%
  5604/12870 [=====================================>-------------------------------------------------]  44%
  5605/12870 [=====================================>-------------------------------------------------]  44%
  5606/12870 [=====================================>-------------------------------------------------]  44%
  5607/12870 [=====================================>-------------------------------------------------]  44%
  5608/12870 [=====================================>-------------------------------------------------]  44%
  5609/12870 [=====================================>-------------------------------------------------]  44%
  5610/12870 [=====================================>-------------------------------------------------]  44%
  5611/12870 [=====================================>-------------------------------------------------]  44%
  5612/12870 [=====================================>-------------------------------------------------]  44%
  5613/12870 [=====================================>-------------------------------------------------]  44%
  5614/12870 [=====================================>-------------------------------------------------]  44%
  5615/12870 [=====================================>-------------------------------------------------]  44%
  5616/12870 [=====================================>-------------------------------------------------]  44%
  5617/12870 [=====================================>-------------------------------------------------]  44%
  5618/12870 [=====================================>-------------------------------------------------]  44%
  5619/12870 [=====================================>-------------------------------------------------]  44%
  5620/12870 [=====================================>-------------------------------------------------]  44%
  5621/12870 [=====================================>-------------------------------------------------]  44%
  5622/12870 [=====================================>-------------------------------------------------]  44%
  5623/12870 [=====================================>-------------------------------------------------]  44%
  5624/12870 [=====================================>-------------------------------------------------]  44%
  5625/12870 [=====================================>-------------------------------------------------]  44%
  5626/12870 [=====================================>-------------------------------------------------]  44%
  5627/12870 [=====================================>-------------------------------------------------]  44%
  5628/12870 [=====================================>-------------------------------------------------]  44%
  5629/12870 [=====================================>-------------------------------------------------]  44%
  5630/12870 [=====================================>-------------------------------------------------]  44%
  5631/12870 [=====================================>-------------------------------------------------]  44%
  5632/12870 [=====================================>-------------------------------------------------]  44%
  5633/12870 [=====================================>-------------------------------------------------]  44%
  5634/12870 [=====================================>-------------------------------------------------]  44%
  5635/12870 [=====================================>-------------------------------------------------]  44%
  5636/12870 [=====================================>-------------------------------------------------]  44%
  5637/12870 [=====================================>-------------------------------------------------]  44%
  5638/12870 [=====================================>-------------------------------------------------]  44%
  5639/12870 [=====================================>-------------------------------------------------]  44%
  5640/12870 [=====================================>-------------------------------------------------]  44%
  5641/12870 [=====================================>-------------------------------------------------]  44%
  5642/12870 [=====================================>-------------------------------------------------]  44%
  5643/12870 [=====================================>-------------------------------------------------]  44%
  5644/12870 [=====================================>-------------------------------------------------]  44%
  5645/12870 [=====================================>-------------------------------------------------]  44%
  5646/12870 [=====================================>-------------------------------------------------]  44%
  5647/12870 [=====================================>-------------------------------------------------]  44%
  5648/12870 [=====================================>-------------------------------------------------]  44%
  5649/12870 [=====================================>-------------------------------------------------]  44%
  5650/12870 [=====================================>-------------------------------------------------]  44%
  5651/12870 [=====================================>-------------------------------------------------]  44%
  5652/12870 [=====================================>-------------------------------------------------]  44%
  5653/12870 [=====================================>-------------------------------------------------]  44%
  5654/12870 [=====================================>-------------------------------------------------]  44%
  5655/12870 [=====================================>-------------------------------------------------]  44%
  5656/12870 [=====================================>-------------------------------------------------]  44%
  5657/12870 [=====================================>-------------------------------------------------]  44%
  5658/12870 [=====================================>-------------------------------------------------]  44%
  5659/12870 [=====================================>-------------------------------------------------]  44%
  5660/12870 [=====================================>-------------------------------------------------]  44%
  5661/12870 [=====================================>-------------------------------------------------]  44%
  5662/12870 [=====================================>-------------------------------------------------]  44%
  5663/12870 [=====================================>-------------------------------------------------]  44%
  5664/12870 [=====================================>-------------------------------------------------]  44%
  5665/12870 [=====================================>-------------------------------------------------]  44%
  5666/12870 [=====================================>-------------------------------------------------]  44%
  5667/12870 [=====================================>-------------------------------------------------]  44%
  5668/12870 [=====================================>-------------------------------------------------]  44%
  5669/12870 [=====================================>-------------------------------------------------]  44%
  5670/12870 [=====================================>-------------------------------------------------]  44%
  5671/12870 [=====================================>-------------------------------------------------]  44%
  5672/12870 [=====================================>-------------------------------------------------]  44%
  5673/12870 [=====================================>-------------------------------------------------]  44%
  5674/12870 [=====================================>-------------------------------------------------]  44%
  5675/12870 [=====================================>-------------------------------------------------]  44%
  5676/12870 [=====================================>-------------------------------------------------]  44%
  5677/12870 [=====================================>-------------------------------------------------]  44%
  5678/12870 [=====================================>-------------------------------------------------]  44%
  5679/12870 [=====================================>-------------------------------------------------]  44%
  5680/12870 [=====================================>-------------------------------------------------]  44%
  5681/12870 [=====================================>-------------------------------------------------]  44%
  5682/12870 [=====================================>-------------------------------------------------]  44%
  5683/12870 [=====================================>-------------------------------------------------]  44%
  5684/12870 [=====================================>-------------------------------------------------]  44%
  5685/12870 [=====================================>-------------------------------------------------]  44%
  5686/12870 [=====================================>-------------------------------------------------]  44%
  5687/12870 [=====================================>-------------------------------------------------]  44%
  5688/12870 [=====================================>-------------------------------------------------]  44%
  5689/12870 [=====================================>-------------------------------------------------]  44%
  5690/12870 [=====================================>-------------------------------------------------]  44%
  5691/12870 [=====================================>-------------------------------------------------]  44%
  5692/12870 [=====================================>-------------------------------------------------]  44%
  5693/12870 [=====================================>-------------------------------------------------]  44%
  5694/12870 [=====================================>-------------------------------------------------]  44%
  5695/12870 [=====================================>-------------------------------------------------]  44%
  5696/12870 [======================================>------------------------------------------------]  44%
  5697/12870 [======================================>------------------------------------------------]  44%
  5698/12870 [======================================>------------------------------------------------]  44%
  5699/12870 [======================================>------------------------------------------------]  44%
  5700/12870 [======================================>------------------------------------------------]  44%
  5701/12870 [======================================>------------------------------------------------]  44%
  5702/12870 [======================================>------------------------------------------------]  44%
  5703/12870 [======================================>------------------------------------------------]  44%
  5704/12870 [======================================>------------------------------------------------]  44%
  5705/12870 [======================================>------------------------------------------------]  44%
  5706/12870 [======================================>------------------------------------------------]  44%
  5707/12870 [======================================>------------------------------------------------]  44%
  5708/12870 [======================================>------------------------------------------------]  44%
  5709/12870 [======================================>------------------------------------------------]  44%
  5710/12870 [======================================>------------------------------------------------]  44%
  5711/12870 [======================================>------------------------------------------------]  44%
  5712/12870 [======================================>------------------------------------------------]  44%
  5713/12870 [======================================>------------------------------------------------]  44%
  5714/12870 [======================================>------------------------------------------------]  44%
  5715/12870 [======================================>------------------------------------------------]  44%
  5716/12870 [======================================>------------------------------------------------]  44%
  5717/12870 [======================================>------------------------------------------------]  44%
  5718/12870 [======================================>------------------------------------------------]  44%
  5719/12870 [======================================>------------------------------------------------]  44%
  5720/12870 [======================================>------------------------------------------------]  44%
  5721/12870 [======================================>------------------------------------------------]  44%
  5722/12870 [======================================>------------------------------------------------]  44%
  5723/12870 [======================================>------------------------------------------------]  44%
  5724/12870 [======================================>------------------------------------------------]  44%
  5725/12870 [======================================>------------------------------------------------]  44%
  5726/12870 [======================================>------------------------------------------------]  44%
  5727/12870 [======================================>------------------------------------------------]  44%
  5728/12870 [======================================>------------------------------------------------]  45%
  5729/12870 [======================================>------------------------------------------------]  45%
  5730/12870 [======================================>------------------------------------------------]  45%
  5731/12870 [======================================>------------------------------------------------]  45%
  5732/12870 [======================================>------------------------------------------------]  45%
  5733/12870 [======================================>------------------------------------------------]  45%
  5734/12870 [======================================>------------------------------------------------]  45%
  5735/12870 [======================================>------------------------------------------------]  45%
  5736/12870 [======================================>------------------------------------------------]  45%
  5737/12870 [======================================>------------------------------------------------]  45%
  5738/12870 [======================================>------------------------------------------------]  45%
  5739/12870 [======================================>------------------------------------------------]  45%
  5740/12870 [======================================>------------------------------------------------]  45%
  5741/12870 [======================================>------------------------------------------------]  45%
  5742/12870 [======================================>------------------------------------------------]  45%
  5743/12870 [======================================>------------------------------------------------]  45%
  5744/12870 [======================================>------------------------------------------------]  45%
  5745/12870 [======================================>------------------------------------------------]  45%
  5746/12870 [======================================>------------------------------------------------]  45%
  5747/12870 [======================================>------------------------------------------------]  45%
  5748/12870 [======================================>------------------------------------------------]  45%
  5749/12870 [======================================>------------------------------------------------]  45%
  5750/12870 [======================================>------------------------------------------------]  45%
  5751/12870 [======================================>------------------------------------------------]  45%
  5752/12870 [======================================>------------------------------------------------]  45%
  5753/12870 [======================================>------------------------------------------------]  45%
  5754/12870 [======================================>------------------------------------------------]  45%
  5755/12870 [======================================>------------------------------------------------]  45%
  5756/12870 [======================================>------------------------------------------------]  45%
  5757/12870 [======================================>------------------------------------------------]  45%
  5758/12870 [======================================>------------------------------------------------]  45%
  5759/12870 [======================================>------------------------------------------------]  45%
  5760/12870 [======================================>------------------------------------------------]  45%
  5761/12870 [======================================>------------------------------------------------]  45%
  5762/12870 [======================================>------------------------------------------------]  45%
  5763/12870 [======================================>------------------------------------------------]  45%
  5764/12870 [======================================>------------------------------------------------]  45%
  5765/12870 [======================================>------------------------------------------------]  45%
  5766/12870 [======================================>------------------------------------------------]  45%
  5767/12870 [======================================>------------------------------------------------]  45%
  5768/12870 [======================================>------------------------------------------------]  45%
  5769/12870 [======================================>------------------------------------------------]  45%
  5770/12870 [======================================>------------------------------------------------]  45%
  5771/12870 [======================================>------------------------------------------------]  45%
  5772/12870 [======================================>------------------------------------------------]  45%
  5773/12870 [======================================>------------------------------------------------]  45%
  5774/12870 [======================================>------------------------------------------------]  45%
  5775/12870 [======================================>------------------------------------------------]  45%
  5776/12870 [======================================>------------------------------------------------]  45%
  5777/12870 [======================================>------------------------------------------------]  45%
  5778/12870 [======================================>------------------------------------------------]  45%
  5779/12870 [======================================>------------------------------------------------]  45%
  5780/12870 [======================================>------------------------------------------------]  45%
  5781/12870 [======================================>------------------------------------------------]  45%
  5782/12870 [======================================>------------------------------------------------]  45%
  5783/12870 [======================================>------------------------------------------------]  45%
  5784/12870 [======================================>------------------------------------------------]  45%
  5785/12870 [======================================>------------------------------------------------]  45%
  5786/12870 [======================================>------------------------------------------------]  45%
  5787/12870 [======================================>------------------------------------------------]  45%
  5788/12870 [======================================>------------------------------------------------]  45%
  5789/12870 [======================================>------------------------------------------------]  45%
  5790/12870 [======================================>------------------------------------------------]  45%
  5791/12870 [======================================>------------------------------------------------]  45%
  5792/12870 [======================================>------------------------------------------------]  45%
  5793/12870 [======================================>------------------------------------------------]  45%
  5794/12870 [======================================>------------------------------------------------]  45%
  5795/12870 [======================================>------------------------------------------------]  45%
  5796/12870 [======================================>------------------------------------------------]  45%
  5797/12870 [======================================>------------------------------------------------]  45%
  5798/12870 [======================================>------------------------------------------------]  45%
  5799/12870 [======================================>------------------------------------------------]  45%
  5800/12870 [======================================>------------------------------------------------]  45%
  5801/12870 [======================================>------------------------------------------------]  45%
  5802/12870 [======================================>------------------------------------------------]  45%
  5803/12870 [======================================>------------------------------------------------]  45%
  5804/12870 [======================================>------------------------------------------------]  45%
  5805/12870 [======================================>------------------------------------------------]  45%
  5806/12870 [======================================>------------------------------------------------]  45%
  5807/12870 [======================================>------------------------------------------------]  45%
  5808/12870 [======================================>------------------------------------------------]  45%
  5809/12870 [======================================>------------------------------------------------]  45%
  5810/12870 [======================================>------------------------------------------------]  45%
  5811/12870 [======================================>------------------------------------------------]  45%
  5812/12870 [======================================>------------------------------------------------]  45%
  5813/12870 [======================================>------------------------------------------------]  45%
  5814/12870 [======================================>------------------------------------------------]  45%
  5815/12870 [======================================>------------------------------------------------]  45%
  5816/12870 [======================================>------------------------------------------------]  45%
  5817/12870 [======================================>------------------------------------------------]  45%
  5818/12870 [======================================>------------------------------------------------]  45%
  5819/12870 [======================================>------------------------------------------------]  45%
  5820/12870 [======================================>------------------------------------------------]  45%
  5821/12870 [======================================>------------------------------------------------]  45%
  5822/12870 [======================================>------------------------------------------------]  45%
  5823/12870 [======================================>------------------------------------------------]  45%
  5824/12870 [======================================>------------------------------------------------]  45%
  5825/12870 [======================================>------------------------------------------------]  45%
  5826/12870 [======================================>------------------------------------------------]  45%
  5827/12870 [======================================>------------------------------------------------]  45%
  5828/12870 [======================================>------------------------------------------------]  45%
  5829/12870 [======================================>------------------------------------------------]  45%
  5830/12870 [======================================>------------------------------------------------]  45%
  5831/12870 [======================================>------------------------------------------------]  45%
  5832/12870 [======================================>------------------------------------------------]  45%
  5833/12870 [======================================>------------------------------------------------]  45%
  5834/12870 [======================================>------------------------------------------------]  45%
  5835/12870 [======================================>------------------------------------------------]  45%
  5836/12870 [======================================>------------------------------------------------]  45%
  5837/12870 [======================================>------------------------------------------------]  45%
  5838/12870 [======================================>------------------------------------------------]  45%
  5839/12870 [======================================>------------------------------------------------]  45%
  5840/12870 [======================================>------------------------------------------------]  45%
  5841/12870 [======================================>------------------------------------------------]  45%
  5842/12870 [======================================>------------------------------------------------]  45%
  5843/12870 [======================================>------------------------------------------------]  45%
  5844/12870 [=======================================>-----------------------------------------------]  45%
  5845/12870 [=======================================>-----------------------------------------------]  45%
  5846/12870 [=======================================>-----------------------------------------------]  45%
  5847/12870 [=======================================>-----------------------------------------------]  45%
  5848/12870 [=======================================>-----------------------------------------------]  45%
  5849/12870 [=======================================>-----------------------------------------------]  45%
  5850/12870 [=======================================>-----------------------------------------------]  45%
  5851/12870 [=======================================>-----------------------------------------------]  45%
  5852/12870 [=======================================>-----------------------------------------------]  45%
  5853/12870 [=======================================>-----------------------------------------------]  45%
  5854/12870 [=======================================>-----------------------------------------------]  45%
  5855/12870 [=======================================>-----------------------------------------------]  45%
  5856/12870 [=======================================>-----------------------------------------------]  46%
  5857/12870 [=======================================>-----------------------------------------------]  46%
  5858/12870 [=======================================>-----------------------------------------------]  46%
  5859/12870 [=======================================>-----------------------------------------------]  46%
  5860/12870 [=======================================>-----------------------------------------------]  46%
  5861/12870 [=======================================>-----------------------------------------------]  46%
  5862/12870 [=======================================>-----------------------------------------------]  46%
  5863/12870 [=======================================>-----------------------------------------------]  46%
  5864/12870 [=======================================>-----------------------------------------------]  46%
  5865/12870 [=======================================>-----------------------------------------------]  46%
  5866/12870 [=======================================>-----------------------------------------------]  46%
  5867/12870 [=======================================>-----------------------------------------------]  46%
  5868/12870 [=======================================>-----------------------------------------------]  46%
  5869/12870 [=======================================>-----------------------------------------------]  46%
  5870/12870 [=======================================>-----------------------------------------------]  46%
  5871/12870 [=======================================>-----------------------------------------------]  46%
  5872/12870 [=======================================>-----------------------------------------------]  46%
  5873/12870 [=======================================>-----------------------------------------------]  46%
  5874/12870 [=======================================>-----------------------------------------------]  46%
  5875/12870 [=======================================>-----------------------------------------------]  46%
  5876/12870 [=======================================>-----------------------------------------------]  46%
  5877/12870 [=======================================>-----------------------------------------------]  46%
  5878/12870 [=======================================>-----------------------------------------------]  46%
  5879/12870 [=======================================>-----------------------------------------------]  46%
  5880/12870 [=======================================>-----------------------------------------------]  46%
  5881/12870 [=======================================>-----------------------------------------------]  46%
  5882/12870 [=======================================>-----------------------------------------------]  46%
  5883/12870 [=======================================>-----------------------------------------------]  46%
  5884/12870 [=======================================>-----------------------------------------------]  46%
  5885/12870 [=======================================>-----------------------------------------------]  46%
  5886/12870 [=======================================>-----------------------------------------------]  46%
  5887/12870 [=======================================>-----------------------------------------------]  46%
  5888/12870 [=======================================>-----------------------------------------------]  46%
  5889/12870 [=======================================>-----------------------------------------------]  46%
  5890/12870 [=======================================>-----------------------------------------------]  46%
  5891/12870 [=======================================>-----------------------------------------------]  46%
  5892/12870 [=======================================>-----------------------------------------------]  46%
  5893/12870 [=======================================>-----------------------------------------------]  46%
  5894/12870 [=======================================>-----------------------------------------------]  46%
  5895/12870 [=======================================>-----------------------------------------------]  46%
  5896/12870 [=======================================>-----------------------------------------------]  46%
  5897/12870 [=======================================>-----------------------------------------------]  46%
  5898/12870 [=======================================>-----------------------------------------------]  46%
  5899/12870 [=======================================>-----------------------------------------------]  46%
  5900/12870 [=======================================>-----------------------------------------------]  46%
  5901/12870 [=======================================>-----------------------------------------------]  46%
  5902/12870 [=======================================>-----------------------------------------------]  46%
  5903/12870 [=======================================>-----------------------------------------------]  46%
  5904/12870 [=======================================>-----------------------------------------------]  46%
  5905/12870 [=======================================>-----------------------------------------------]  46%
  5906/12870 [=======================================>-----------------------------------------------]  46%
  5907/12870 [=======================================>-----------------------------------------------]  46%
  5908/12870 [=======================================>-----------------------------------------------]  46%
  5909/12870 [=======================================>-----------------------------------------------]  46%
  5910/12870 [=======================================>-----------------------------------------------]  46%
  5911/12870 [=======================================>-----------------------------------------------]  46%
  5912/12870 [=======================================>-----------------------------------------------]  46%
  5913/12870 [=======================================>-----------------------------------------------]  46%
  5914/12870 [=======================================>-----------------------------------------------]  46%
  5915/12870 [=======================================>-----------------------------------------------]  46%
  5916/12870 [=======================================>-----------------------------------------------]  46%
  5917/12870 [=======================================>-----------------------------------------------]  46%
  5918/12870 [=======================================>-----------------------------------------------]  46%
  5919/12870 [=======================================>-----------------------------------------------]  46%
  5920/12870 [=======================================>-----------------------------------------------]  46%
  5921/12870 [=======================================>-----------------------------------------------]  46%
  5922/12870 [=======================================>-----------------------------------------------]  46%
  5923/12870 [=======================================>-----------------------------------------------]  46%
  5924/12870 [=======================================>-----------------------------------------------]  46%
  5925/12870 [=======================================>-----------------------------------------------]  46%
  5926/12870 [=======================================>-----------------------------------------------]  46%
  5927/12870 [=======================================>-----------------------------------------------]  46%
  5928/12870 [=======================================>-----------------------------------------------]  46%
  5929/12870 [=======================================>-----------------------------------------------]  46%
  5930/12870 [=======================================>-----------------------------------------------]  46%
  5931/12870 [=======================================>-----------------------------------------------]  46%
  5932/12870 [=======================================>-----------------------------------------------]  46%
  5933/12870 [=======================================>-----------------------------------------------]  46%
  5934/12870 [=======================================>-----------------------------------------------]  46%
  5935/12870 [=======================================>-----------------------------------------------]  46%
  5936/12870 [=======================================>-----------------------------------------------]  46%
  5937/12870 [=======================================>-----------------------------------------------]  46%
  5938/12870 [=======================================>-----------------------------------------------]  46%
  5939/12870 [=======================================>-----------------------------------------------]  46%
  5940/12870 [=======================================>-----------------------------------------------]  46%
  5941/12870 [=======================================>-----------------------------------------------]  46%
  5942/12870 [=======================================>-----------------------------------------------]  46%
  5943/12870 [=======================================>-----------------------------------------------]  46%
  5944/12870 [=======================================>-----------------------------------------------]  46%
  5945/12870 [=======================================>-----------------------------------------------]  46%
  5946/12870 [=======================================>-----------------------------------------------]  46%
  5947/12870 [=======================================>-----------------------------------------------]  46%
  5948/12870 [=======================================>-----------------------------------------------]  46%
  5949/12870 [=======================================>-----------------------------------------------]  46%
  5950/12870 [=======================================>-----------------------------------------------]  46%
  5951/12870 [=======================================>-----------------------------------------------]  46%
  5952/12870 [=======================================>-----------------------------------------------]  46%
  5953/12870 [=======================================>-----------------------------------------------]  46%
  5954/12870 [=======================================>-----------------------------------------------]  46%
  5955/12870 [=======================================>-----------------------------------------------]  46%
  5956/12870 [=======================================>-----------------------------------------------]  46%
  5957/12870 [=======================================>-----------------------------------------------]  46%
  5958/12870 [=======================================>-----------------------------------------------]  46%
  5959/12870 [=======================================>-----------------------------------------------]  46%
  5960/12870 [=======================================>-----------------------------------------------]  46%
  5961/12870 [=======================================>-----------------------------------------------]  46%
  5962/12870 [=======================================>-----------------------------------------------]  46%
  5963/12870 [=======================================>-----------------------------------------------]  46%
  5964/12870 [=======================================>-----------------------------------------------]  46%
  5965/12870 [=======================================>-----------------------------------------------]  46%
  5966/12870 [=======================================>-----------------------------------------------]  46%
  5967/12870 [=======================================>-----------------------------------------------]  46%
  5968/12870 [=======================================>-----------------------------------------------]  46%
  5969/12870 [=======================================>-----------------------------------------------]  46%
  5970/12870 [=======================================>-----------------------------------------------]  46%
  5971/12870 [=======================================>-----------------------------------------------]  46%
  5972/12870 [=======================================>-----------------------------------------------]  46%
  5973/12870 [=======================================>-----------------------------------------------]  46%
  5974/12870 [=======================================>-----------------------------------------------]  46%
  5975/12870 [=======================================>-----------------------------------------------]  46%
  5976/12870 [=======================================>-----------------------------------------------]  46%
  5977/12870 [=======================================>-----------------------------------------------]  46%
  5978/12870 [=======================================>-----------------------------------------------]  46%
  5979/12870 [=======================================>-----------------------------------------------]  46%
  5980/12870 [=======================================>-----------------------------------------------]  46%
  5981/12870 [=======================================>-----------------------------------------------]  46%
  5982/12870 [=======================================>-----------------------------------------------]  46%
  5983/12870 [=======================================>-----------------------------------------------]  46%
  5984/12870 [=======================================>-----------------------------------------------]  46%
  5985/12870 [=======================================>-----------------------------------------------]  47%
  5986/12870 [=======================================>-----------------------------------------------]  47%
  5987/12870 [=======================================>-----------------------------------------------]  47%
  5988/12870 [=======================================>-----------------------------------------------]  47%
  5989/12870 [=======================================>-----------------------------------------------]  47%
  5990/12870 [=======================================>-----------------------------------------------]  47%
  5991/12870 [=======================================>-----------------------------------------------]  47%
  5992/12870 [========================================>----------------------------------------------]  47%
  5993/12870 [========================================>----------------------------------------------]  47%
  5994/12870 [========================================>----------------------------------------------]  47%
  5995/12870 [========================================>----------------------------------------------]  47%
  5996/12870 [========================================>----------------------------------------------]  47%
  5997/12870 [========================================>----------------------------------------------]  47%
  5998/12870 [========================================>----------------------------------------------]  47%
  5999/12870 [========================================>----------------------------------------------]  47%
  6000/12870 [========================================>----------------------------------------------]  47%
  6001/12870 [========================================>----------------------------------------------]  47%
  6002/12870 [========================================>----------------------------------------------]  47%
  6003/12870 [========================================>----------------------------------------------]  47%
  6004/12870 [========================================>----------------------------------------------]  47%
  6005/12870 [========================================>----------------------------------------------]  47%
  6006/12870 [========================================>----------------------------------------------]  47%
  6007/12870 [========================================>----------------------------------------------]  47%
  6008/12870 [========================================>----------------------------------------------]  47%
  6009/12870 [========================================>----------------------------------------------]  47%
  6010/12870 [========================================>----------------------------------------------]  47%
  6011/12870 [========================================>----------------------------------------------]  47%
  6012/12870 [========================================>----------------------------------------------]  47%
  6013/12870 [========================================>----------------------------------------------]  47%
  6014/12870 [========================================>----------------------------------------------]  47%
  6015/12870 [========================================>----------------------------------------------]  47%
  6016/12870 [========================================>----------------------------------------------]  47%
  6017/12870 [========================================>----------------------------------------------]  47%
  6018/12870 [========================================>----------------------------------------------]  47%
  6019/12870 [========================================>----------------------------------------------]  47%
  6020/12870 [========================================>----------------------------------------------]  47%
  6021/12870 [========================================>----------------------------------------------]  47%
  6022/12870 [========================================>----------------------------------------------]  47%
  6023/12870 [========================================>----------------------------------------------]  47%
  6024/12870 [========================================>----------------------------------------------]  47%
  6025/12870 [========================================>----------------------------------------------]  47%
  6026/12870 [========================================>----------------------------------------------]  47%
  6027/12870 [========================================>----------------------------------------------]  47%
  6028/12870 [========================================>----------------------------------------------]  47%
  6029/12870 [========================================>----------------------------------------------]  47%
  6030/12870 [========================================>----------------------------------------------]  47%
  6031/12870 [========================================>----------------------------------------------]  47%
  6032/12870 [========================================>----------------------------------------------]  47%
  6033/12870 [========================================>----------------------------------------------]  47%
  6034/12870 [========================================>----------------------------------------------]  47%
  6035/12870 [========================================>----------------------------------------------]  47%
  6036/12870 [========================================>----------------------------------------------]  47%
  6037/12870 [========================================>----------------------------------------------]  47%
  6038/12870 [========================================>----------------------------------------------]  47%
  6039/12870 [========================================>----------------------------------------------]  47%
  6040/12870 [========================================>----------------------------------------------]  47%
  6041/12870 [========================================>----------------------------------------------]  47%
  6042/12870 [========================================>----------------------------------------------]  47%
  6043/12870 [========================================>----------------------------------------------]  47%
  6044/12870 [========================================>----------------------------------------------]  47%
  6045/12870 [========================================>----------------------------------------------]  47%
  6046/12870 [========================================>----------------------------------------------]  47%
  6047/12870 [========================================>----------------------------------------------]  47%
  6048/12870 [========================================>----------------------------------------------]  47%
  6049/12870 [========================================>----------------------------------------------]  47%
  6050/12870 [========================================>----------------------------------------------]  47%
  6051/12870 [========================================>----------------------------------------------]  47%
  6052/12870 [========================================>----------------------------------------------]  47%
  6053/12870 [========================================>----------------------------------------------]  47%
  6054/12870 [========================================>----------------------------------------------]  47%
  6055/12870 [========================================>----------------------------------------------]  47%
  6056/12870 [========================================>----------------------------------------------]  47%
  6057/12870 [========================================>----------------------------------------------]  47%
  6058/12870 [========================================>----------------------------------------------]  47%
  6059/12870 [========================================>----------------------------------------------]  47%
  6060/12870 [========================================>----------------------------------------------]  47%
  6061/12870 [========================================>----------------------------------------------]  47%
  6062/12870 [========================================>----------------------------------------------]  47%
  6063/12870 [========================================>----------------------------------------------]  47%
  6064/12870 [========================================>----------------------------------------------]  47%
  6065/12870 [========================================>----------------------------------------------]  47%
  6066/12870 [========================================>----------------------------------------------]  47%
  6067/12870 [========================================>----------------------------------------------]  47%
  6068/12870 [========================================>----------------------------------------------]  47%
  6069/12870 [========================================>----------------------------------------------]  47%
  6070/12870 [========================================>----------------------------------------------]  47%
  6071/12870 [========================================>----------------------------------------------]  47%
  6072/12870 [========================================>----------------------------------------------]  47%
  6073/12870 [========================================>----------------------------------------------]  47%
  6074/12870 [========================================>----------------------------------------------]  47%
  6075/12870 [========================================>----------------------------------------------]  47%
  6076/12870 [========================================>----------------------------------------------]  47%
  6077/12870 [========================================>----------------------------------------------]  47%
  6078/12870 [========================================>----------------------------------------------]  47%
  6079/12870 [========================================>----------------------------------------------]  47%
  6080/12870 [========================================>----------------------------------------------]  47%
  6081/12870 [========================================>----------------------------------------------]  47%
  6082/12870 [========================================>----------------------------------------------]  47%
  6083/12870 [========================================>----------------------------------------------]  47%
  6084/12870 [========================================>----------------------------------------------]  47%
  6085/12870 [========================================>----------------------------------------------]  47%
  6086/12870 [========================================>----------------------------------------------]  47%
  6087/12870 [========================================>----------------------------------------------]  47%
  6088/12870 [========================================>----------------------------------------------]  47%
  6089/12870 [========================================>----------------------------------------------]  47%
  6090/12870 [========================================>----------------------------------------------]  47%
  6091/12870 [========================================>----------------------------------------------]  47%
  6092/12870 [========================================>----------------------------------------------]  47%
  6093/12870 [========================================>----------------------------------------------]  47%
  6094/12870 [========================================>----------------------------------------------]  47%
  6095/12870 [========================================>----------------------------------------------]  47%
  6096/12870 [========================================>----------------------------------------------]  47%
  6097/12870 [========================================>----------------------------------------------]  47%
  6098/12870 [========================================>----------------------------------------------]  47%
  6099/12870 [========================================>----------------------------------------------]  47%
  6100/12870 [========================================>----------------------------------------------]  47%
  6101/12870 [========================================>----------------------------------------------]  47%
  6102/12870 [========================================>----------------------------------------------]  47%
  6103/12870 [========================================>----------------------------------------------]  47%
  6104/12870 [========================================>----------------------------------------------]  47%
  6105/12870 [========================================>----------------------------------------------]  47%
  6106/12870 [========================================>----------------------------------------------]  47%
  6107/12870 [========================================>----------------------------------------------]  47%
  6108/12870 [========================================>----------------------------------------------]  47%
  6109/12870 [========================================>----------------------------------------------]  47%
  6110/12870 [========================================>----------------------------------------------]  47%
  6111/12870 [========================================>----------------------------------------------]  47%
  6112/12870 [========================================>----------------------------------------------]  47%
  6113/12870 [========================================>----------------------------------------------]  47%
  6114/12870 [========================================>----------------------------------------------]  48%
  6115/12870 [========================================>----------------------------------------------]  48%
  6116/12870 [========================================>----------------------------------------------]  48%
  6117/12870 [========================================>----------------------------------------------]  48%
  6118/12870 [========================================>----------------------------------------------]  48%
  6119/12870 [========================================>----------------------------------------------]  48%
  6120/12870 [========================================>----------------------------------------------]  48%
  6121/12870 [========================================>----------------------------------------------]  48%
  6122/12870 [========================================>----------------------------------------------]  48%
  6123/12870 [========================================>----------------------------------------------]  48%
  6124/12870 [========================================>----------------------------------------------]  48%
  6125/12870 [========================================>----------------------------------------------]  48%
  6126/12870 [========================================>----------------------------------------------]  48%
  6127/12870 [========================================>----------------------------------------------]  48%
  6128/12870 [========================================>----------------------------------------------]  48%
  6129/12870 [========================================>----------------------------------------------]  48%
  6130/12870 [========================================>----------------------------------------------]  48%
  6131/12870 [========================================>----------------------------------------------]  48%
  6132/12870 [========================================>----------------------------------------------]  48%
  6133/12870 [========================================>----------------------------------------------]  48%
  6134/12870 [========================================>----------------------------------------------]  48%
  6135/12870 [========================================>----------------------------------------------]  48%
  6136/12870 [========================================>----------------------------------------------]  48%
  6137/12870 [========================================>----------------------------------------------]  48%
  6138/12870 [========================================>----------------------------------------------]  48%
  6139/12870 [========================================>----------------------------------------------]  48%
  6140/12870 [=========================================>---------------------------------------------]  48%
  6141/12870 [=========================================>---------------------------------------------]  48%
  6142/12870 [=========================================>---------------------------------------------]  48%
  6143/12870 [=========================================>---------------------------------------------]  48%
  6144/12870 [=========================================>---------------------------------------------]  48%
  6145/12870 [=========================================>---------------------------------------------]  48%
  6146/12870 [=========================================>---------------------------------------------]  48%
  6147/12870 [=========================================>---------------------------------------------]  48%
  6148/12870 [=========================================>---------------------------------------------]  48%
  6149/12870 [=========================================>---------------------------------------------]  48%
  6150/12870 [=========================================>---------------------------------------------]  48%
  6151/12870 [=========================================>---------------------------------------------]  48%
  6152/12870 [=========================================>---------------------------------------------]  48%
  6153/12870 [=========================================>---------------------------------------------]  48%
  6154/12870 [=========================================>---------------------------------------------]  48%
  6155/12870 [=========================================>---------------------------------------------]  48%
  6156/12870 [=========================================>---------------------------------------------]  48%
  6157/12870 [=========================================>---------------------------------------------]  48%
  6158/12870 [=========================================>---------------------------------------------]  48%
  6159/12870 [=========================================>---------------------------------------------]  48%
  6160/12870 [=========================================>---------------------------------------------]  48%
  6161/12870 [=========================================>---------------------------------------------]  48%
  6162/12870 [=========================================>---------------------------------------------]  48%
  6163/12870 [=========================================>---------------------------------------------]  48%
  6164/12870 [=========================================>---------------------------------------------]  48%
  6165/12870 [=========================================>---------------------------------------------]  48%
  6166/12870 [=========================================>---------------------------------------------]  48%
  6167/12870 [=========================================>---------------------------------------------]  48%
  6168/12870 [=========================================>---------------------------------------------]  48%
  6169/12870 [=========================================>---------------------------------------------]  48%
  6170/12870 [=========================================>---------------------------------------------]  48%
  6171/12870 [=========================================>---------------------------------------------]  48%
  6172/12870 [=========================================>---------------------------------------------]  48%
  6173/12870 [=========================================>---------------------------------------------]  48%
  6174/12870 [=========================================>---------------------------------------------]  48%
  6175/12870 [=========================================>---------------------------------------------]  48%
  6176/12870 [=========================================>---------------------------------------------]  48%
  6177/12870 [=========================================>---------------------------------------------]  48%
  6178/12870 [=========================================>---------------------------------------------]  48%
  6179/12870 [=========================================>---------------------------------------------]  48%
  6180/12870 [=========================================>---------------------------------------------]  48%
  6181/12870 [=========================================>---------------------------------------------]  48%
  6182/12870 [=========================================>---------------------------------------------]  48%
  6183/12870 [=========================================>---------------------------------------------]  48%
  6184/12870 [=========================================>---------------------------------------------]  48%
  6185/12870 [=========================================>---------------------------------------------]  48%
  6186/12870 [=========================================>---------------------------------------------]  48%
  6187/12870 [=========================================>---------------------------------------------]  48%
  6188/12870 [=========================================>---------------------------------------------]  48%
  6189/12870 [=========================================>---------------------------------------------]  48%
  6190/12870 [=========================================>---------------------------------------------]  48%
  6191/12870 [=========================================>---------------------------------------------]  48%
  6192/12870 [=========================================>---------------------------------------------]  48%
  6193/12870 [=========================================>---------------------------------------------]  48%
  6194/12870 [=========================================>---------------------------------------------]  48%
  6195/12870 [=========================================>---------------------------------------------]  48%
  6196/12870 [=========================================>---------------------------------------------]  48%
  6197/12870 [=========================================>---------------------------------------------]  48%
  6198/12870 [=========================================>---------------------------------------------]  48%
  6199/12870 [=========================================>---------------------------------------------]  48%
  6200/12870 [=========================================>---------------------------------------------]  48%
  6201/12870 [=========================================>---------------------------------------------]  48%
  6202/12870 [=========================================>---------------------------------------------]  48%
  6203/12870 [=========================================>---------------------------------------------]  48%
  6204/12870 [=========================================>---------------------------------------------]  48%
  6205/12870 [=========================================>---------------------------------------------]  48%
  6206/12870 [=========================================>---------------------------------------------]  48%
  6207/12870 [=========================================>---------------------------------------------]  48%
  6208/12870 [=========================================>---------------------------------------------]  48%
  6209/12870 [=========================================>---------------------------------------------]  48%
  6210/12870 [=========================================>---------------------------------------------]  48%
  6211/12870 [=========================================>---------------------------------------------]  48%
  6212/12870 [=========================================>---------------------------------------------]  48%
  6213/12870 [=========================================>---------------------------------------------]  48%
  6214/12870 [=========================================>---------------------------------------------]  48%
  6215/12870 [=========================================>---------------------------------------------]  48%
  6216/12870 [=========================================>---------------------------------------------]  48%
  6217/12870 [=========================================>---------------------------------------------]  48%
  6218/12870 [=========================================>---------------------------------------------]  48%
  6219/12870 [=========================================>---------------------------------------------]  48%
  6220/12870 [=========================================>---------------------------------------------]  48%
  6221/12870 [=========================================>---------------------------------------------]  48%
  6222/12870 [=========================================>---------------------------------------------]  48%
  6223/12870 [=========================================>---------------------------------------------]  48%
  6224/12870 [=========================================>---------------------------------------------]  48%
  6225/12870 [=========================================>---------------------------------------------]  48%
  6226/12870 [=========================================>---------------------------------------------]  48%
  6227/12870 [=========================================>---------------------------------------------]  48%
  6228/12870 [=========================================>---------------------------------------------]  48%
  6229/12870 [=========================================>---------------------------------------------]  48%
  6230/12870 [=========================================>---------------------------------------------]  48%
  6231/12870 [=========================================>---------------------------------------------]  48%
  6232/12870 [=========================================>---------------------------------------------]  48%
  6233/12870 [=========================================>---------------------------------------------]  48%
  6234/12870 [=========================================>---------------------------------------------]  48%
  6235/12870 [=========================================>---------------------------------------------]  48%
  6236/12870 [=========================================>---------------------------------------------]  48%
  6237/12870 [=========================================>---------------------------------------------]  48%
  6238/12870 [=========================================>---------------------------------------------]  48%
  6239/12870 [=========================================>---------------------------------------------]  48%
  6240/12870 [=========================================>---------------------------------------------]  48%
  6241/12870 [=========================================>---------------------------------------------]  48%
  6242/12870 [=========================================>---------------------------------------------]  49%
  6243/12870 [=========================================>---------------------------------------------]  49%
  6244/12870 [=========================================>---------------------------------------------]  49%
  6245/12870 [=========================================>---------------------------------------------]  49%
  6246/12870 [=========================================>---------------------------------------------]  49%
  6247/12870 [=========================================>---------------------------------------------]  49%
  6248/12870 [=========================================>---------------------------------------------]  49%
  6249/12870 [=========================================>---------------------------------------------]  49%
  6250/12870 [=========================================>---------------------------------------------]  49%
  6251/12870 [=========================================>---------------------------------------------]  49%
  6252/12870 [=========================================>---------------------------------------------]  49%
  6253/12870 [=========================================>---------------------------------------------]  49%
  6254/12870 [=========================================>---------------------------------------------]  49%
  6255/12870 [=========================================>---------------------------------------------]  49%
  6256/12870 [=========================================>---------------------------------------------]  49%
  6257/12870 [=========================================>---------------------------------------------]  49%
  6258/12870 [=========================================>---------------------------------------------]  49%
  6259/12870 [=========================================>---------------------------------------------]  49%
  6260/12870 [=========================================>---------------------------------------------]  49%
  6261/12870 [=========================================>---------------------------------------------]  49%
  6262/12870 [=========================================>---------------------------------------------]  49%
  6263/12870 [=========================================>---------------------------------------------]  49%
  6264/12870 [=========================================>---------------------------------------------]  49%
  6265/12870 [=========================================>---------------------------------------------]  49%
  6266/12870 [=========================================>---------------------------------------------]  49%
  6267/12870 [=========================================>---------------------------------------------]  49%
  6268/12870 [=========================================>---------------------------------------------]  49%
  6269/12870 [=========================================>---------------------------------------------]  49%
  6270/12870 [=========================================>---------------------------------------------]  49%
  6271/12870 [=========================================>---------------------------------------------]  49%
  6272/12870 [=========================================>---------------------------------------------]  49%
  6273/12870 [=========================================>---------------------------------------------]  49%
  6274/12870 [=========================================>---------------------------------------------]  49%
  6275/12870 [=========================================>---------------------------------------------]  49%
  6276/12870 [=========================================>---------------------------------------------]  49%
  6277/12870 [=========================================>---------------------------------------------]  49%
  6278/12870 [=========================================>---------------------------------------------]  49%
  6279/12870 [=========================================>---------------------------------------------]  49%
  6280/12870 [=========================================>---------------------------------------------]  49%
  6281/12870 [=========================================>---------------------------------------------]  49%
  6282/12870 [=========================================>---------------------------------------------]  49%
  6283/12870 [=========================================>---------------------------------------------]  49%
  6284/12870 [=========================================>---------------------------------------------]  49%
  6285/12870 [=========================================>---------------------------------------------]  49%
  6286/12870 [=========================================>---------------------------------------------]  49%
  6287/12870 [=========================================>---------------------------------------------]  49%
  6288/12870 [==========================================>--------------------------------------------]  49%
  6289/12870 [==========================================>--------------------------------------------]  49%
  6290/12870 [==========================================>--------------------------------------------]  49%
  6291/12870 [==========================================>--------------------------------------------]  49%
  6292/12870 [==========================================>--------------------------------------------]  49%
  6293/12870 [==========================================>--------------------------------------------]  49%
  6294/12870 [==========================================>--------------------------------------------]  49%
  6295/12870 [==========================================>--------------------------------------------]  49%
  6296/12870 [==========================================>--------------------------------------------]  49%
  6297/12870 [==========================================>--------------------------------------------]  49%
  6298/12870 [==========================================>--------------------------------------------]  49%
  6299/12870 [==========================================>--------------------------------------------]  49%
  6300/12870 [==========================================>--------------------------------------------]  49%
  6301/12870 [==========================================>--------------------------------------------]  49%
  6302/12870 [==========================================>--------------------------------------------]  49%
  6303/12870 [==========================================>--------------------------------------------]  49%
  6304/12870 [==========================================>--------------------------------------------]  49%
  6305/12870 [==========================================>--------------------------------------------]  49%
  6306/12870 [==========================================>--------------------------------------------]  49%
  6307/12870 [==========================================>--------------------------------------------]  49%
  6308/12870 [==========================================>--------------------------------------------]  49%
  6309/12870 [==========================================>--------------------------------------------]  49%
  6310/12870 [==========================================>--------------------------------------------]  49%
  6311/12870 [==========================================>--------------------------------------------]  49%
  6312/12870 [==========================================>--------------------------------------------]  49%
  6313/12870 [==========================================>--------------------------------------------]  49%
  6314/12870 [==========================================>--------------------------------------------]  49%
  6315/12870 [==========================================>--------------------------------------------]  49%
  6316/12870 [==========================================>--------------------------------------------]  49%
  6317/12870 [==========================================>--------------------------------------------]  49%
  6318/12870 [==========================================>--------------------------------------------]  49%
  6319/12870 [==========================================>--------------------------------------------]  49%
  6320/12870 [==========================================>--------------------------------------------]  49%
  6321/12870 [==========================================>--------------------------------------------]  49%
  6322/12870 [==========================================>--------------------------------------------]  49%
  6323/12870 [==========================================>--------------------------------------------]  49%
  6324/12870 [==========================================>--------------------------------------------]  49%
  6325/12870 [==========================================>--------------------------------------------]  49%
  6326/12870 [==========================================>--------------------------------------------]  49%
  6327/12870 [==========================================>--------------------------------------------]  49%
  6328/12870 [==========================================>--------------------------------------------]  49%
  6329/12870 [==========================================>--------------------------------------------]  49%
  6330/12870 [==========================================>--------------------------------------------]  49%
  6331/12870 [==========================================>--------------------------------------------]  49%
  6332/12870 [==========================================>--------------------------------------------]  49%
  6333/12870 [==========================================>--------------------------------------------]  49%
  6334/12870 [==========================================>--------------------------------------------]  49%
  6335/12870 [==========================================>--------------------------------------------]  49%
  6336/12870 [==========================================>--------------------------------------------]  49%
  6337/12870 [==========================================>--------------------------------------------]  49%
  6338/12870 [==========================================>--------------------------------------------]  49%
  6339/12870 [==========================================>--------------------------------------------]  49%
  6340/12870 [==========================================>--------------------------------------------]  49%
  6341/12870 [==========================================>--------------------------------------------]  49%
  6342/12870 [==========================================>--------------------------------------------]  49%
  6343/12870 [==========================================>--------------------------------------------]  49%
  6344/12870 [==========================================>--------------------------------------------]  49%
  6345/12870 [==========================================>--------------------------------------------]  49%
  6346/12870 [==========================================>--------------------------------------------]  49%
  6347/12870 [==========================================>--------------------------------------------]  49%
  6348/12870 [==========================================>--------------------------------------------]  49%
  6349/12870 [==========================================>--------------------------------------------]  49%
  6350/12870 [==========================================>--------------------------------------------]  49%
  6351/12870 [==========================================>--------------------------------------------]  49%
  6352/12870 [==========================================>--------------------------------------------]  49%
  6353/12870 [==========================================>--------------------------------------------]  49%
  6354/12870 [==========================================>--------------------------------------------]  49%
  6355/12870 [==========================================>--------------------------------------------]  49%
  6356/12870 [==========================================>--------------------------------------------]  49%
  6357/12870 [==========================================>--------------------------------------------]  49%
  6358/12870 [==========================================>--------------------------------------------]  49%
  6359/12870 [==========================================>--------------------------------------------]  49%
  6360/12870 [==========================================>--------------------------------------------]  49%
  6361/12870 [==========================================>--------------------------------------------]  49%
  6362/12870 [==========================================>--------------------------------------------]  49%
  6363/12870 [==========================================>--------------------------------------------]  49%
  6364/12870 [==========================================>--------------------------------------------]  49%
  6365/12870 [==========================================>--------------------------------------------]  49%
  6366/12870 [==========================================>--------------------------------------------]  49%
  6367/12870 [==========================================>--------------------------------------------]  49%
  6368/12870 [==========================================>--------------------------------------------]  49%
  6369/12870 [==========================================>--------------------------------------------]  49%
  6370/12870 [==========================================>--------------------------------------------]  49%
  6371/12870 [==========================================>--------------------------------------------]  50%
  6372/12870 [==========================================>--------------------------------------------]  50%
  6373/12870 [==========================================>--------------------------------------------]  50%
  6374/12870 [==========================================>--------------------------------------------]  50%
  6375/12870 [==========================================>--------------------------------------------]  50%
  6376/12870 [==========================================>--------------------------------------------]  50%
  6377/12870 [==========================================>--------------------------------------------]  50%
  6378/12870 [==========================================>--------------------------------------------]  50%
  6379/12870 [==========================================>--------------------------------------------]  50%
  6380/12870 [==========================================>--------------------------------------------]  50%
  6381/12870 [==========================================>--------------------------------------------]  50%
  6382/12870 [==========================================>--------------------------------------------]  50%
  6383/12870 [==========================================>--------------------------------------------]  50%
  6384/12870 [==========================================>--------------------------------------------]  50%
  6385/12870 [==========================================>--------------------------------------------]  50%
  6386/12870 [==========================================>--------------------------------------------]  50%
  6387/12870 [==========================================>--------------------------------------------]  50%
  6388/12870 [==========================================>--------------------------------------------]  50%
  6389/12870 [==========================================>--------------------------------------------]  50%
  6390/12870 [==========================================>--------------------------------------------]  50%
  6391/12870 [==========================================>--------------------------------------------]  50%
  6392/12870 [==========================================>--------------------------------------------]  50%
  6393/12870 [==========================================>--------------------------------------------]  50%
  6394/12870 [==========================================>--------------------------------------------]  50%
  6395/12870 [==========================================>--------------------------------------------]  50%
  6396/12870 [==========================================>--------------------------------------------]  50%
  6397/12870 [==========================================>--------------------------------------------]  50%
  6398/12870 [==========================================>--------------------------------------------]  50%
  6399/12870 [==========================================>--------------------------------------------]  50%
  6400/12870 [==========================================>--------------------------------------------]  50%
  6401/12870 [==========================================>--------------------------------------------]  50%
  6402/12870 [==========================================>--------------------------------------------]  50%
  6403/12870 [==========================================>--------------------------------------------]  50%
  6404/12870 [==========================================>--------------------------------------------]  50%
  6405/12870 [==========================================>--------------------------------------------]  50%
  6406/12870 [==========================================>--------------------------------------------]  50%
  6407/12870 [==========================================>--------------------------------------------]  50%
  6408/12870 [==========================================>--------------------------------------------]  50%
  6409/12870 [==========================================>--------------------------------------------]  50%
  6410/12870 [==========================================>--------------------------------------------]  50%
  6411/12870 [==========================================>--------------------------------------------]  50%
  6412/12870 [==========================================>--------------------------------------------]  50%
  6413/12870 [==========================================>--------------------------------------------]  50%
  6414/12870 [==========================================>--------------------------------------------]  50%
  6415/12870 [==========================================>--------------------------------------------]  50%
  6416/12870 [==========================================>--------------------------------------------]  50%
  6417/12870 [==========================================>--------------------------------------------]  50%
  6418/12870 [==========================================>--------------------------------------------]  50%
  6419/12870 [==========================================>--------------------------------------------]  50%
  6420/12870 [==========================================>--------------------------------------------]  50%
  6421/12870 [==========================================>--------------------------------------------]  50%
  6422/12870 [==========================================>--------------------------------------------]  50%
  6423/12870 [==========================================>--------------------------------------------]  50%
  6424/12870 [==========================================>--------------------------------------------]  50%
  6425/12870 [==========================================>--------------------------------------------]  50%
  6426/12870 [==========================================>--------------------------------------------]  50%
  6427/12870 [==========================================>--------------------------------------------]  50%
  6428/12870 [==========================================>--------------------------------------------]  50%
  6429/12870 [==========================================>--------------------------------------------]  50%
  6430/12870 [==========================================>--------------------------------------------]  50%
  6431/12870 [==========================================>--------------------------------------------]  50%
  6432/12870 [==========================================>--------------------------------------------]  50%
  6433/12870 [==========================================>--------------------------------------------]  50%
  6434/12870 [==========================================>--------------------------------------------]  50%
  6435/12870 [===========================================>-------------------------------------------]  50%
  6436/12870 [===========================================>-------------------------------------------]  50%
  6437/12870 [===========================================>-------------------------------------------]  50%
  6438/12870 [===========================================>-------------------------------------------]  50%
  6439/12870 [===========================================>-------------------------------------------]  50%
  6440/12870 [===========================================>-------------------------------------------]  50%
  6441/12870 [===========================================>-------------------------------------------]  50%
  6442/12870 [===========================================>-------------------------------------------]  50%
  6443/12870 [===========================================>-------------------------------------------]  50%
  6444/12870 [===========================================>-------------------------------------------]  50%
  6445/12870 [===========================================>-------------------------------------------]  50%
  6446/12870 [===========================================>-------------------------------------------]  50%
  6447/12870 [===========================================>-------------------------------------------]  50%
  6448/12870 [===========================================>-------------------------------------------]  50%
  6449/12870 [===========================================>-------------------------------------------]  50%
  6450/12870 [===========================================>-------------------------------------------]  50%
  6451/12870 [===========================================>-------------------------------------------]  50%
  6452/12870 [===========================================>-------------------------------------------]  50%
  6453/12870 [===========================================>-------------------------------------------]  50%
  6454/12870 [===========================================>-------------------------------------------]  50%
  6455/12870 [===========================================>-------------------------------------------]  50%
  6456/12870 [===========================================>-------------------------------------------]  50%
  6457/12870 [===========================================>-------------------------------------------]  50%
  6458/12870 [===========================================>-------------------------------------------]  50%
  6459/12870 [===========================================>-------------------------------------------]  50%
  6460/12870 [===========================================>-------------------------------------------]  50%
  6461/12870 [===========================================>-------------------------------------------]  50%
  6462/12870 [===========================================>-------------------------------------------]  50%
  6463/12870 [===========================================>-------------------------------------------]  50%
  6464/12870 [===========================================>-------------------------------------------]  50%
  6465/12870 [===========================================>-------------------------------------------]  50%
  6466/12870 [===========================================>-------------------------------------------]  50%
  6467/12870 [===========================================>-------------------------------------------]  50%
  6468/12870 [===========================================>-------------------------------------------]  50%
  6469/12870 [===========================================>-------------------------------------------]  50%
  6470/12870 [===========================================>-------------------------------------------]  50%
  6471/12870 [===========================================>-------------------------------------------]  50%
  6472/12870 [===========================================>-------------------------------------------]  50%
  6473/12870 [===========================================>-------------------------------------------]  50%
  6474/12870 [===========================================>-------------------------------------------]  50%
  6475/12870 [===========================================>-------------------------------------------]  50%
  6476/12870 [===========================================>-------------------------------------------]  50%
  6477/12870 [===========================================>-------------------------------------------]  50%
  6478/12870 [===========================================>-------------------------------------------]  50%
  6479/12870 [===========================================>-------------------------------------------]  50%
  6480/12870 [===========================================>-------------------------------------------]  50%
  6481/12870 [===========================================>-------------------------------------------]  50%
  6482/12870 [===========================================>-------------------------------------------]  50%
  6483/12870 [===========================================>-------------------------------------------]  50%
  6484/12870 [===========================================>-------------------------------------------]  50%
  6485/12870 [===========================================>-------------------------------------------]  50%
  6486/12870 [===========================================>-------------------------------------------]  50%
  6487/12870 [===========================================>-------------------------------------------]  50%
  6488/12870 [===========================================>-------------------------------------------]  50%
  6489/12870 [===========================================>-------------------------------------------]  50%
  6490/12870 [===========================================>-------------------------------------------]  50%
  6491/12870 [===========================================>-------------------------------------------]  50%
  6492/12870 [===========================================>-------------------------------------------]  50%
  6493/12870 [===========================================>-------------------------------------------]  50%
  6494/12870 [===========================================>-------------------------------------------]  50%
  6495/12870 [===========================================>-------------------------------------------]  50%
  6496/12870 [===========================================>-------------------------------------------]  50%
  6497/12870 [===========================================>-------------------------------------------]  50%
  6498/12870 [===========================================>-------------------------------------------]  50%
  6499/12870 [===========================================>-------------------------------------------]  50%
  6500/12870 [===========================================>-------------------------------------------]  51%
  6501/12870 [===========================================>-------------------------------------------]  51%
  6502/12870 [===========================================>-------------------------------------------]  51%
  6503/12870 [===========================================>-------------------------------------------]  51%
  6504/12870 [===========================================>-------------------------------------------]  51%
  6505/12870 [===========================================>-------------------------------------------]  51%
  6506/12870 [===========================================>-------------------------------------------]  51%
  6507/12870 [===========================================>-------------------------------------------]  51%
  6508/12870 [===========================================>-------------------------------------------]  51%
  6509/12870 [===========================================>-------------------------------------------]  51%
  6510/12870 [===========================================>-------------------------------------------]  51%
  6511/12870 [===========================================>-------------------------------------------]  51%
  6512/12870 [===========================================>-------------------------------------------]  51%
  6513/12870 [===========================================>-------------------------------------------]  51%
  6514/12870 [===========================================>-------------------------------------------]  51%
  6515/12870 [===========================================>-------------------------------------------]  51%
  6516/12870 [===========================================>-------------------------------------------]  51%
  6517/12870 [===========================================>-------------------------------------------]  51%
  6518/12870 [===========================================>-------------------------------------------]  51%
  6519/12870 [===========================================>-------------------------------------------]  51%
  6520/12870 [===========================================>-------------------------------------------]  51%
  6521/12870 [===========================================>-------------------------------------------]  51%
  6522/12870 [===========================================>-------------------------------------------]  51%
  6523/12870 [===========================================>-------------------------------------------]  51%
  6524/12870 [===========================================>-------------------------------------------]  51%
  6525/12870 [===========================================>-------------------------------------------]  51%
  6526/12870 [===========================================>-------------------------------------------]  51%
  6527/12870 [===========================================>-------------------------------------------]  51%
  6528/12870 [===========================================>-------------------------------------------]  51%
  6529/12870 [===========================================>-------------------------------------------]  51%
  6530/12870 [===========================================>-------------------------------------------]  51%
  6531/12870 [===========================================>-------------------------------------------]  51%
  6532/12870 [===========================================>-------------------------------------------]  51%
  6533/12870 [===========================================>-------------------------------------------]  51%
  6534/12870 [===========================================>-------------------------------------------]  51%
  6535/12870 [===========================================>-------------------------------------------]  51%
  6536/12870 [===========================================>-------------------------------------------]  51%
  6537/12870 [===========================================>-------------------------------------------]  51%
  6538/12870 [===========================================>-------------------------------------------]  51%
  6539/12870 [===========================================>-------------------------------------------]  51%
  6540/12870 [===========================================>-------------------------------------------]  51%
  6541/12870 [===========================================>-------------------------------------------]  51%
  6542/12870 [===========================================>-------------------------------------------]  51%
  6543/12870 [===========================================>-------------------------------------------]  51%
  6544/12870 [===========================================>-------------------------------------------]  51%
  6545/12870 [===========================================>-------------------------------------------]  51%
  6546/12870 [===========================================>-------------------------------------------]  51%
  6547/12870 [===========================================>-------------------------------------------]  51%
  6548/12870 [===========================================>-------------------------------------------]  51%
  6549/12870 [===========================================>-------------------------------------------]  51%
  6550/12870 [===========================================>-------------------------------------------]  51%
  6551/12870 [===========================================>-------------------------------------------]  51%
  6552/12870 [===========================================>-------------------------------------------]  51%
  6553/12870 [===========================================>-------------------------------------------]  51%
  6554/12870 [===========================================>-------------------------------------------]  51%
  6555/12870 [===========================================>-------------------------------------------]  51%
  6556/12870 [===========================================>-------------------------------------------]  51%
  6557/12870 [===========================================>-------------------------------------------]  51%
  6558/12870 [===========================================>-------------------------------------------]  51%
  6559/12870 [===========================================>-------------------------------------------]  51%
  6560/12870 [===========================================>-------------------------------------------]  51%
  6561/12870 [===========================================>-------------------------------------------]  51%
  6562/12870 [===========================================>-------------------------------------------]  51%
  6563/12870 [===========================================>-------------------------------------------]  51%
  6564/12870 [===========================================>-------------------------------------------]  51%
  6565/12870 [===========================================>-------------------------------------------]  51%
  6566/12870 [===========================================>-------------------------------------------]  51%
  6567/12870 [===========================================>-------------------------------------------]  51%
  6568/12870 [===========================================>-------------------------------------------]  51%
  6569/12870 [===========================================>-------------------------------------------]  51%
  6570/12870 [===========================================>-------------------------------------------]  51%
  6571/12870 [===========================================>-------------------------------------------]  51%
  6572/12870 [===========================================>-------------------------------------------]  51%
  6573/12870 [===========================================>-------------------------------------------]  51%
  6574/12870 [===========================================>-------------------------------------------]  51%
  6575/12870 [===========================================>-------------------------------------------]  51%
  6576/12870 [===========================================>-------------------------------------------]  51%
  6577/12870 [===========================================>-------------------------------------------]  51%
  6578/12870 [===========================================>-------------------------------------------]  51%
  6579/12870 [===========================================>-------------------------------------------]  51%
  6580/12870 [===========================================>-------------------------------------------]  51%
  6581/12870 [===========================================>-------------------------------------------]  51%
  6582/12870 [===========================================>-------------------------------------------]  51%
  6583/12870 [============================================>------------------------------------------]  51%
  6584/12870 [============================================>------------------------------------------]  51%
  6585/12870 [============================================>------------------------------------------]  51%
  6586/12870 [============================================>------------------------------------------]  51%
  6587/12870 [============================================>------------------------------------------]  51%
  6588/12870 [============================================>------------------------------------------]  51%
  6589/12870 [============================================>------------------------------------------]  51%
  6590/12870 [============================================>------------------------------------------]  51%
  6591/12870 [============================================>------------------------------------------]  51%
  6592/12870 [============================================>------------------------------------------]  51%
  6593/12870 [============================================>------------------------------------------]  51%
  6594/12870 [============================================>------------------------------------------]  51%
  6595/12870 [============================================>------------------------------------------]  51%
  6596/12870 [============================================>------------------------------------------]  51%
  6597/12870 [============================================>------------------------------------------]  51%
  6598/12870 [============================================>------------------------------------------]  51%
  6599/12870 [============================================>------------------------------------------]  51%
  6600/12870 [============================================>------------------------------------------]  51%
  6601/12870 [============================================>------------------------------------------]  51%
  6602/12870 [============================================>------------------------------------------]  51%
  6603/12870 [============================================>------------------------------------------]  51%
  6604/12870 [============================================>------------------------------------------]  51%
  6605/12870 [============================================>------------------------------------------]  51%
  6606/12870 [============================================>------------------------------------------]  51%
  6607/12870 [============================================>------------------------------------------]  51%
  6608/12870 [============================================>------------------------------------------]  51%
  6609/12870 [============================================>------------------------------------------]  51%
  6610/12870 [============================================>------------------------------------------]  51%
  6611/12870 [============================================>------------------------------------------]  51%
  6612/12870 [============================================>------------------------------------------]  51%
  6613/12870 [============================================>------------------------------------------]  51%
  6614/12870 [============================================>------------------------------------------]  51%
  6615/12870 [============================================>------------------------------------------]  51%
  6616/12870 [============================================>------------------------------------------]  51%
  6617/12870 [============================================>------------------------------------------]  51%
  6618/12870 [============================================>------------------------------------------]  51%
  6619/12870 [============================================>------------------------------------------]  51%
  6620/12870 [============================================>------------------------------------------]  51%
  6621/12870 [============================================>------------------------------------------]  51%
  6622/12870 [============================================>------------------------------------------]  51%
  6623/12870 [============================================>------------------------------------------]  51%
  6624/12870 [============================================>------------------------------------------]  51%
  6625/12870 [============================================>------------------------------------------]  51%
  6626/12870 [============================================>------------------------------------------]  51%
  6627/12870 [============================================>------------------------------------------]  51%
  6628/12870 [============================================>------------------------------------------]  51%
  6629/12870 [============================================>------------------------------------------]  52%
  6630/12870 [============================================>------------------------------------------]  52%
  6631/12870 [============================================>------------------------------------------]  52%
  6632/12870 [============================================>------------------------------------------]  52%
  6633/12870 [============================================>------------------------------------------]  52%
  6634/12870 [============================================>------------------------------------------]  52%
  6635/12870 [============================================>------------------------------------------]  52%
  6636/12870 [============================================>------------------------------------------]  52%
  6637/12870 [============================================>------------------------------------------]  52%
  6638/12870 [============================================>------------------------------------------]  52%
  6639/12870 [============================================>------------------------------------------]  52%
  6640/12870 [============================================>------------------------------------------]  52%
  6641/12870 [============================================>------------------------------------------]  52%
  6642/12870 [============================================>------------------------------------------]  52%
  6643/12870 [============================================>------------------------------------------]  52%
  6644/12870 [============================================>------------------------------------------]  52%
  6645/12870 [============================================>------------------------------------------]  52%
  6646/12870 [============================================>------------------------------------------]  52%
  6647/12870 [============================================>------------------------------------------]  52%
  6648/12870 [============================================>------------------------------------------]  52%
  6649/12870 [============================================>------------------------------------------]  52%
  6650/12870 [============================================>------------------------------------------]  52%
  6651/12870 [============================================>------------------------------------------]  52%
  6652/12870 [============================================>------------------------------------------]  52%
  6653/12870 [============================================>------------------------------------------]  52%
  6654/12870 [============================================>------------------------------------------]  52%
  6655/12870 [============================================>------------------------------------------]  52%
  6656/12870 [============================================>------------------------------------------]  52%
  6657/12870 [============================================>------------------------------------------]  52%
  6658/12870 [============================================>------------------------------------------]  52%
  6659/12870 [============================================>------------------------------------------]  52%
  6660/12870 [============================================>------------------------------------------]  52%
  6661/12870 [============================================>------------------------------------------]  52%
  6662/12870 [============================================>------------------------------------------]  52%
  6663/12870 [============================================>------------------------------------------]  52%
  6664/12870 [============================================>------------------------------------------]  52%
  6665/12870 [============================================>------------------------------------------]  52%
  6666/12870 [============================================>------------------------------------------]  52%
  6667/12870 [============================================>------------------------------------------]  52%
  6668/12870 [============================================>------------------------------------------]  52%
  6669/12870 [============================================>------------------------------------------]  52%
  6670/12870 [============================================>------------------------------------------]  52%
  6671/12870 [============================================>------------------------------------------]  52%
  6672/12870 [============================================>------------------------------------------]  52%
  6673/12870 [============================================>------------------------------------------]  52%
  6674/12870 [============================================>------------------------------------------]  52%
  6675/12870 [============================================>------------------------------------------]  52%
  6676/12870 [============================================>------------------------------------------]  52%
  6677/12870 [============================================>------------------------------------------]  52%
  6678/12870 [============================================>------------------------------------------]  52%
  6679/12870 [============================================>------------------------------------------]  52%
  6680/12870 [============================================>------------------------------------------]  52%
  6681/12870 [============================================>------------------------------------------]  52%
  6682/12870 [============================================>------------------------------------------]  52%
  6683/12870 [============================================>------------------------------------------]  52%
  6684/12870 [============================================>------------------------------------------]  52%
  6685/12870 [============================================>------------------------------------------]  52%
  6686/12870 [============================================>------------------------------------------]  52%
  6687/12870 [============================================>------------------------------------------]  52%
  6688/12870 [============================================>------------------------------------------]  52%
  6689/12870 [============================================>------------------------------------------]  52%
  6690/12870 [============================================>------------------------------------------]  52%
  6691/12870 [============================================>------------------------------------------]  52%
  6692/12870 [============================================>------------------------------------------]  52%
  6693/12870 [============================================>------------------------------------------]  52%
  6694/12870 [============================================>------------------------------------------]  52%
  6695/12870 [============================================>------------------------------------------]  52%
  6696/12870 [============================================>------------------------------------------]  52%
  6697/12870 [============================================>------------------------------------------]  52%
  6698/12870 [============================================>------------------------------------------]  52%
  6699/12870 [============================================>------------------------------------------]  52%
  6700/12870 [============================================>------------------------------------------]  52%
  6701/12870 [============================================>------------------------------------------]  52%
  6702/12870 [============================================>------------------------------------------]  52%
  6703/12870 [============================================>------------------------------------------]  52%
  6704/12870 [============================================>------------------------------------------]  52%
  6705/12870 [============================================>------------------------------------------]  52%
  6706/12870 [============================================>------------------------------------------]  52%
  6707/12870 [============================================>------------------------------------------]  52%
  6708/12870 [============================================>------------------------------------------]  52%
  6709/12870 [============================================>------------------------------------------]  52%
  6710/12870 [============================================>------------------------------------------]  52%
  6711/12870 [============================================>------------------------------------------]  52%
  6712/12870 [============================================>------------------------------------------]  52%
  6713/12870 [============================================>------------------------------------------]  52%
  6714/12870 [============================================>------------------------------------------]  52%
  6715/12870 [============================================>------------------------------------------]  52%
  6716/12870 [============================================>------------------------------------------]  52%
  6717/12870 [============================================>------------------------------------------]  52%
  6718/12870 [============================================>------------------------------------------]  52%
  6719/12870 [============================================>------------------------------------------]  52%
  6720/12870 [============================================>------------------------------------------]  52%
  6721/12870 [============================================>------------------------------------------]  52%
  6722/12870 [============================================>------------------------------------------]  52%
  6723/12870 [============================================>------------------------------------------]  52%
  6724/12870 [============================================>------------------------------------------]  52%
  6725/12870 [============================================>------------------------------------------]  52%
  6726/12870 [============================================>------------------------------------------]  52%
  6727/12870 [============================================>------------------------------------------]  52%
  6728/12870 [============================================>------------------------------------------]  52%
  6729/12870 [============================================>------------------------------------------]  52%
  6730/12870 [============================================>------------------------------------------]  52%
  6731/12870 [=============================================>-----------------------------------------]  52%
  6732/12870 [=============================================>-----------------------------------------]  52%
  6733/12870 [=============================================>-----------------------------------------]  52%
  6734/12870 [=============================================>-----------------------------------------]  52%
  6735/12870 [=============================================>-----------------------------------------]  52%
  6736/12870 [=============================================>-----------------------------------------]  52%
  6737/12870 [=============================================>-----------------------------------------]  52%
  6738/12870 [=============================================>-----------------------------------------]  52%
  6739/12870 [=============================================>-----------------------------------------]  52%
  6740/12870 [=============================================>-----------------------------------------]  52%
  6741/12870 [=============================================>-----------------------------------------]  52%
  6742/12870 [=============================================>-----------------------------------------]  52%
  6743/12870 [=============================================>-----------------------------------------]  52%
  6744/12870 [=============================================>-----------------------------------------]  52%
  6745/12870 [=============================================>-----------------------------------------]  52%
  6746/12870 [=============================================>-----------------------------------------]  52%
  6747/12870 [=============================================>-----------------------------------------]  52%
  6748/12870 [=============================================>-----------------------------------------]  52%
  6749/12870 [=============================================>-----------------------------------------]  52%
  6750/12870 [=============================================>-----------------------------------------]  52%
  6751/12870 [=============================================>-----------------------------------------]  52%
  6752/12870 [=============================================>-----------------------------------------]  52%
  6753/12870 [=============================================>-----------------------------------------]  52%
  6754/12870 [=============================================>-----------------------------------------]  52%
  6755/12870 [=============================================>-----------------------------------------]  52%
  6756/12870 [=============================================>-----------------------------------------]  52%
  6757/12870 [=============================================>-----------------------------------------]  53%
  6758/12870 [=============================================>-----------------------------------------]  53%
  6759/12870 [=============================================>-----------------------------------------]  53%
  6760/12870 [=============================================>-----------------------------------------]  53%
  6761/12870 [=============================================>-----------------------------------------]  53%
  6762/12870 [=============================================>-----------------------------------------]  53%
  6763/12870 [=============================================>-----------------------------------------]  53%
  6764/12870 [=============================================>-----------------------------------------]  53%
  6765/12870 [=============================================>-----------------------------------------]  53%
  6766/12870 [=============================================>-----------------------------------------]  53%
  6767/12870 [=============================================>-----------------------------------------]  53%
  6768/12870 [=============================================>-----------------------------------------]  53%
  6769/12870 [=============================================>-----------------------------------------]  53%
  6770/12870 [=============================================>-----------------------------------------]  53%
  6771/12870 [=============================================>-----------------------------------------]  53%
  6772/12870 [=============================================>-----------------------------------------]  53%
  6773/12870 [=============================================>-----------------------------------------]  53%
  6774/12870 [=============================================>-----------------------------------------]  53%
  6775/12870 [=============================================>-----------------------------------------]  53%
  6776/12870 [=============================================>-----------------------------------------]  53%
  6777/12870 [=============================================>-----------------------------------------]  53%
  6778/12870 [=============================================>-----------------------------------------]  53%
  6779/12870 [=============================================>-----------------------------------------]  53%
  6780/12870 [=============================================>-----------------------------------------]  53%
  6781/12870 [=============================================>-----------------------------------------]  53%
  6782/12870 [=============================================>-----------------------------------------]  53%
  6783/12870 [=============================================>-----------------------------------------]  53%
  6784/12870 [=============================================>-----------------------------------------]  53%
  6785/12870 [=============================================>-----------------------------------------]  53%
  6786/12870 [=============================================>-----------------------------------------]  53%
  6787/12870 [=============================================>-----------------------------------------]  53%
  6788/12870 [=============================================>-----------------------------------------]  53%
  6789/12870 [=============================================>-----------------------------------------]  53%
  6790/12870 [=============================================>-----------------------------------------]  53%
  6791/12870 [=============================================>-----------------------------------------]  53%
  6792/12870 [=============================================>-----------------------------------------]  53%
  6793/12870 [=============================================>-----------------------------------------]  53%
  6794/12870 [=============================================>-----------------------------------------]  53%
  6795/12870 [=============================================>-----------------------------------------]  53%
  6796/12870 [=============================================>-----------------------------------------]  53%
  6797/12870 [=============================================>-----------------------------------------]  53%
  6798/12870 [=============================================>-----------------------------------------]  53%
  6799/12870 [=============================================>-----------------------------------------]  53%
  6800/12870 [=============================================>-----------------------------------------]  53%
  6801/12870 [=============================================>-----------------------------------------]  53%
  6802/12870 [=============================================>-----------------------------------------]  53%
  6803/12870 [=============================================>-----------------------------------------]  53%
  6804/12870 [=============================================>-----------------------------------------]  53%
  6805/12870 [=============================================>-----------------------------------------]  53%
  6806/12870 [=============================================>-----------------------------------------]  53%
  6807/12870 [=============================================>-----------------------------------------]  53%
  6808/12870 [=============================================>-----------------------------------------]  53%
  6809/12870 [=============================================>-----------------------------------------]  53%
  6810/12870 [=============================================>-----------------------------------------]  53%
  6811/12870 [=============================================>-----------------------------------------]  53%
  6812/12870 [=============================================>-----------------------------------------]  53%
  6813/12870 [=============================================>-----------------------------------------]  53%
  6814/12870 [=============================================>-----------------------------------------]  53%
  6815/12870 [=============================================>-----------------------------------------]  53%
  6816/12870 [=============================================>-----------------------------------------]  53%
  6817/12870 [=============================================>-----------------------------------------]  53%
  6818/12870 [=============================================>-----------------------------------------]  53%
  6819/12870 [=============================================>-----------------------------------------]  53%
  6820/12870 [=============================================>-----------------------------------------]  53%
  6821/12870 [=============================================>-----------------------------------------]  53%
  6822/12870 [=============================================>-----------------------------------------]  53%
  6823/12870 [=============================================>-----------------------------------------]  53%
  6824/12870 [=============================================>-----------------------------------------]  53%
  6825/12870 [=============================================>-----------------------------------------]  53%
  6826/12870 [=============================================>-----------------------------------------]  53%
  6827/12870 [=============================================>-----------------------------------------]  53%
  6828/12870 [=============================================>-----------------------------------------]  53%
  6829/12870 [=============================================>-----------------------------------------]  53%
  6830/12870 [=============================================>-----------------------------------------]  53%
  6831/12870 [=============================================>-----------------------------------------]  53%
  6832/12870 [=============================================>-----------------------------------------]  53%
  6833/12870 [=============================================>-----------------------------------------]  53%
  6834/12870 [=============================================>-----------------------------------------]  53%
  6835/12870 [=============================================>-----------------------------------------]  53%
  6836/12870 [=============================================>-----------------------------------------]  53%
  6837/12870 [=============================================>-----------------------------------------]  53%
  6838/12870 [=============================================>-----------------------------------------]  53%
  6839/12870 [=============================================>-----------------------------------------]  53%
  6840/12870 [=============================================>-----------------------------------------]  53%
  6841/12870 [=============================================>-----------------------------------------]  53%
  6842/12870 [=============================================>-----------------------------------------]  53%
  6843/12870 [=============================================>-----------------------------------------]  53%
  6844/12870 [=============================================>-----------------------------------------]  53%
  6845/12870 [=============================================>-----------------------------------------]  53%
  6846/12870 [=============================================>-----------------------------------------]  53%
  6847/12870 [=============================================>-----------------------------------------]  53%
  6848/12870 [=============================================>-----------------------------------------]  53%
  6849/12870 [=============================================>-----------------------------------------]  53%
  6850/12870 [=============================================>-----------------------------------------]  53%
  6851/12870 [=============================================>-----------------------------------------]  53%
  6852/12870 [=============================================>-----------------------------------------]  53%
  6853/12870 [=============================================>-----------------------------------------]  53%
  6854/12870 [=============================================>-----------------------------------------]  53%
  6855/12870 [=============================================>-----------------------------------------]  53%
  6856/12870 [=============================================>-----------------------------------------]  53%
  6857/12870 [=============================================>-----------------------------------------]  53%
  6858/12870 [=============================================>-----------------------------------------]  53%
  6859/12870 [=============================================>-----------------------------------------]  53%
  6860/12870 [=============================================>-----------------------------------------]  53%
  6861/12870 [=============================================>-----------------------------------------]  53%
  6862/12870 [=============================================>-----------------------------------------]  53%
  6863/12870 [=============================================>-----------------------------------------]  53%
  6864/12870 [=============================================>-----------------------------------------]  53%
  6865/12870 [=============================================>-----------------------------------------]  53%
  6866/12870 [=============================================>-----------------------------------------]  53%
  6867/12870 [=============================================>-----------------------------------------]  53%
  6868/12870 [=============================================>-----------------------------------------]  53%
  6869/12870 [=============================================>-----------------------------------------]  53%
  6870/12870 [=============================================>-----------------------------------------]  53%
  6871/12870 [=============================================>-----------------------------------------]  53%
  6872/12870 [=============================================>-----------------------------------------]  53%
  6873/12870 [=============================================>-----------------------------------------]  53%
  6874/12870 [=============================================>-----------------------------------------]  53%
  6875/12870 [=============================================>-----------------------------------------]  53%
  6876/12870 [=============================================>-----------------------------------------]  53%
  6877/12870 [=============================================>-----------------------------------------]  53%
  6878/12870 [=============================================>-----------------------------------------]  53%
  6879/12870 [==============================================>----------------------------------------]  53%
  6880/12870 [==============================================>----------------------------------------]  53%
  6881/12870 [==============================================>----------------------------------------]  53%
  6882/12870 [==============================================>----------------------------------------]  53%
  6883/12870 [==============================================>----------------------------------------]  53%
  6884/12870 [==============================================>----------------------------------------]  53%
  6885/12870 [==============================================>----------------------------------------]  53%
  6886/12870 [==============================================>----------------------------------------]  54%
  6887/12870 [==============================================>----------------------------------------]  54%
  6888/12870 [==============================================>----------------------------------------]  54%
  6889/12870 [==============================================>----------------------------------------]  54%
  6890/12870 [==============================================>----------------------------------------]  54%
  6891/12870 [==============================================>----------------------------------------]  54%
  6892/12870 [==============================================>----------------------------------------]  54%
  6893/12870 [==============================================>----------------------------------------]  54%
  6894/12870 [==============================================>----------------------------------------]  54%
  6895/12870 [==============================================>----------------------------------------]  54%
  6896/12870 [==============================================>----------------------------------------]  54%
  6897/12870 [==============================================>----------------------------------------]  54%
  6898/12870 [==============================================>----------------------------------------]  54%
  6899/12870 [==============================================>----------------------------------------]  54%
  6900/12870 [==============================================>----------------------------------------]  54%
  6901/12870 [==============================================>----------------------------------------]  54%
  6902/12870 [==============================================>----------------------------------------]  54%
  6903/12870 [==============================================>----------------------------------------]  54%
  6904/12870 [==============================================>----------------------------------------]  54%
  6905/12870 [==============================================>----------------------------------------]  54%
  6906/12870 [==============================================>----------------------------------------]  54%
  6907/12870 [==============================================>----------------------------------------]  54%
  6908/12870 [==============================================>----------------------------------------]  54%
  6909/12870 [==============================================>----------------------------------------]  54%
  6910/12870 [==============================================>----------------------------------------]  54%
  6911/12870 [==============================================>----------------------------------------]  54%
  6912/12870 [==============================================>----------------------------------------]  54%
  6913/12870 [==============================================>----------------------------------------]  54%
  6914/12870 [==============================================>----------------------------------------]  54%
  6915/12870 [==============================================>----------------------------------------]  54%
  6916/12870 [==============================================>----------------------------------------]  54%
  6917/12870 [==============================================>----------------------------------------]  54%
  6918/12870 [==============================================>----------------------------------------]  54%
  6919/12870 [==============================================>----------------------------------------]  54%
  6920/12870 [==============================================>----------------------------------------]  54%
  6921/12870 [==============================================>----------------------------------------]  54%
  6922/12870 [==============================================>----------------------------------------]  54%
  6923/12870 [==============================================>----------------------------------------]  54%
  6924/12870 [==============================================>----------------------------------------]  54%
  6925/12870 [==============================================>----------------------------------------]  54%
  6926/12870 [==============================================>----------------------------------------]  54%
  6927/12870 [==============================================>----------------------------------------]  54%
  6928/12870 [==============================================>----------------------------------------]  54%
  6929/12870 [==============================================>----------------------------------------]  54%
  6930/12870 [==============================================>----------------------------------------]  54%
  6931/12870 [==============================================>----------------------------------------]  54%
  6932/12870 [==============================================>----------------------------------------]  54%
  6933/12870 [==============================================>----------------------------------------]  54%
  6934/12870 [==============================================>----------------------------------------]  54%
  6935/12870 [==============================================>----------------------------------------]  54%
  6936/12870 [==============================================>----------------------------------------]  54%
  6937/12870 [==============================================>----------------------------------------]  54%
  6938/12870 [==============================================>----------------------------------------]  54%
  6939/12870 [==============================================>----------------------------------------]  54%
  6940/12870 [==============================================>----------------------------------------]  54%
  6941/12870 [==============================================>----------------------------------------]  54%
  6942/12870 [==============================================>----------------------------------------]  54%
  6943/12870 [==============================================>----------------------------------------]  54%
  6944/12870 [==============================================>----------------------------------------]  54%
  6945/12870 [==============================================>----------------------------------------]  54%
  6946/12870 [==============================================>----------------------------------------]  54%
  6947/12870 [==============================================>----------------------------------------]  54%
  6948/12870 [==============================================>----------------------------------------]  54%
  6949/12870 [==============================================>----------------------------------------]  54%
  6950/12870 [==============================================>----------------------------------------]  54%
  6951/12870 [==============================================>----------------------------------------]  54%
  6952/12870 [==============================================>----------------------------------------]  54%
  6953/12870 [==============================================>----------------------------------------]  54%
  6954/12870 [==============================================>----------------------------------------]  54%
  6955/12870 [==============================================>----------------------------------------]  54%
  6956/12870 [==============================================>----------------------------------------]  54%
  6957/12870 [==============================================>----------------------------------------]  54%
  6958/12870 [==============================================>----------------------------------------]  54%
  6959/12870 [==============================================>----------------------------------------]  54%
  6960/12870 [==============================================>----------------------------------------]  54%
  6961/12870 [==============================================>----------------------------------------]  54%
  6962/12870 [==============================================>----------------------------------------]  54%
  6963/12870 [==============================================>----------------------------------------]  54%
  6964/12870 [==============================================>----------------------------------------]  54%
  6965/12870 [==============================================>----------------------------------------]  54%
  6966/12870 [==============================================>----------------------------------------]  54%
  6967/12870 [==============================================>----------------------------------------]  54%
  6968/12870 [==============================================>----------------------------------------]  54%
  6969/12870 [==============================================>----------------------------------------]  54%
  6970/12870 [==============================================>----------------------------------------]  54%
  6971/12870 [==============================================>----------------------------------------]  54%
  6972/12870 [==============================================>----------------------------------------]  54%
  6973/12870 [==============================================>----------------------------------------]  54%
  6974/12870 [==============================================>----------------------------------------]  54%
  6975/12870 [==============================================>----------------------------------------]  54%
  6976/12870 [==============================================>----------------------------------------]  54%
  6977/12870 [==============================================>----------------------------------------]  54%
  6978/12870 [==============================================>----------------------------------------]  54%
  6979/12870 [==============================================>----------------------------------------]  54%
  6980/12870 [==============================================>----------------------------------------]  54%
  6981/12870 [==============================================>----------------------------------------]  54%
  6982/12870 [==============================================>----------------------------------------]  54%
  6983/12870 [==============================================>----------------------------------------]  54%
  6984/12870 [==============================================>----------------------------------------]  54%
  6985/12870 [==============================================>----------------------------------------]  54%
  6986/12870 [==============================================>----------------------------------------]  54%
  6987/12870 [==============================================>----------------------------------------]  54%
  6988/12870 [==============================================>----------------------------------------]  54%
  6989/12870 [==============================================>----------------------------------------]  54%
  6990/12870 [==============================================>----------------------------------------]  54%
  6991/12870 [==============================================>----------------------------------------]  54%
  6992/12870 [==============================================>----------------------------------------]  54%
  6993/12870 [==============================================>----------------------------------------]  54%
  6994/12870 [==============================================>----------------------------------------]  54%
  6995/12870 [==============================================>----------------------------------------]  54%
  6996/12870 [==============================================>----------------------------------------]  54%
  6997/12870 [==============================================>----------------------------------------]  54%
  6998/12870 [==============================================>----------------------------------------]  54%
  6999/12870 [==============================================>----------------------------------------]  54%
  7000/12870 [==============================================>----------------------------------------]  54%
  7001/12870 [==============================================>----------------------------------------]  54%
  7002/12870 [==============================================>----------------------------------------]  54%
  7003/12870 [==============================================>----------------------------------------]  54%
  7004/12870 [==============================================>----------------------------------------]  54%
  7005/12870 [==============================================>----------------------------------------]  54%
  7006/12870 [==============================================>----------------------------------------]  54%
  7007/12870 [==============================================>----------------------------------------]  54%
  7008/12870 [==============================================>----------------------------------------]  54%
  7009/12870 [==============================================>----------------------------------------]  54%
  7010/12870 [==============================================>----------------------------------------]  54%
  7011/12870 [==============================================>----------------------------------------]  54%
  7012/12870 [==============================================>----------------------------------------]  54%
  7013/12870 [==============================================>----------------------------------------]  54%
  7014/12870 [==============================================>----------------------------------------]  54%
  7015/12870 [==============================================>----------------------------------------]  55%
  7016/12870 [==============================================>----------------------------------------]  55%
  7017/12870 [==============================================>----------------------------------------]  55%
  7018/12870 [==============================================>----------------------------------------]  55%
  7019/12870 [==============================================>----------------------------------------]  55%
  7020/12870 [==============================================>----------------------------------------]  55%
  7021/12870 [==============================================>----------------------------------------]  55%
  7022/12870 [==============================================>----------------------------------------]  55%
  7023/12870 [==============================================>----------------------------------------]  55%
  7024/12870 [==============================================>----------------------------------------]  55%
  7025/12870 [==============================================>----------------------------------------]  55%
  7026/12870 [==============================================>----------------------------------------]  55%
  7027/12870 [===============================================>---------------------------------------]  55%
  7028/12870 [===============================================>---------------------------------------]  55%
  7029/12870 [===============================================>---------------------------------------]  55%
  7030/12870 [===============================================>---------------------------------------]  55%
  7031/12870 [===============================================>---------------------------------------]  55%
  7032/12870 [===============================================>---------------------------------------]  55%
  7033/12870 [===============================================>---------------------------------------]  55%
  7034/12870 [===============================================>---------------------------------------]  55%
  7035/12870 [===============================================>---------------------------------------]  55%
  7036/12870 [===============================================>---------------------------------------]  55%
  7037/12870 [===============================================>---------------------------------------]  55%
  7038/12870 [===============================================>---------------------------------------]  55%
  7039/12870 [===============================================>---------------------------------------]  55%
  7040/12870 [===============================================>---------------------------------------]  55%
  7041/12870 [===============================================>---------------------------------------]  55%
  7042/12870 [===============================================>---------------------------------------]  55%
  7043/12870 [===============================================>---------------------------------------]  55%
  7044/12870 [===============================================>---------------------------------------]  55%
  7045/12870 [===============================================>---------------------------------------]  55%
  7046/12870 [===============================================>---------------------------------------]  55%
  7047/12870 [===============================================>---------------------------------------]  55%
  7048/12870 [===============================================>---------------------------------------]  55%
  7049/12870 [===============================================>---------------------------------------]  55%
  7050/12870 [===============================================>---------------------------------------]  55%
  7051/12870 [===============================================>---------------------------------------]  55%
  7052/12870 [===============================================>---------------------------------------]  55%
  7053/12870 [===============================================>---------------------------------------]  55%
  7054/12870 [===============================================>---------------------------------------]  55%
  7055/12870 [===============================================>---------------------------------------]  55%
  7056/12870 [===============================================>---------------------------------------]  55%
  7057/12870 [===============================================>---------------------------------------]  55%
  7058/12870 [===============================================>---------------------------------------]  55%
  7059/12870 [===============================================>---------------------------------------]  55%
  7060/12870 [===============================================>---------------------------------------]  55%
  7061/12870 [===============================================>---------------------------------------]  55%
  7062/12870 [===============================================>---------------------------------------]  55%
  7063/12870 [===============================================>---------------------------------------]  55%
  7064/12870 [===============================================>---------------------------------------]  55%
  7065/12870 [===============================================>---------------------------------------]  55%
  7066/12870 [===============================================>---------------------------------------]  55%
  7067/12870 [===============================================>---------------------------------------]  55%
  7068/12870 [===============================================>---------------------------------------]  55%
  7069/12870 [===============================================>---------------------------------------]  55%
  7070/12870 [===============================================>---------------------------------------]  55%
  7071/12870 [===============================================>---------------------------------------]  55%
  7072/12870 [===============================================>---------------------------------------]  55%
  7073/12870 [===============================================>---------------------------------------]  55%
  7074/12870 [===============================================>---------------------------------------]  55%
  7075/12870 [===============================================>---------------------------------------]  55%
  7076/12870 [===============================================>---------------------------------------]  55%
  7077/12870 [===============================================>---------------------------------------]  55%
  7078/12870 [===============================================>---------------------------------------]  55%
  7079/12870 [===============================================>---------------------------------------]  55%
  7080/12870 [===============================================>---------------------------------------]  55%
  7081/12870 [===============================================>---------------------------------------]  55%
  7082/12870 [===============================================>---------------------------------------]  55%
  7083/12870 [===============================================>---------------------------------------]  55%
  7084/12870 [===============================================>---------------------------------------]  55%
  7085/12870 [===============================================>---------------------------------------]  55%
  7086/12870 [===============================================>---------------------------------------]  55%
  7087/12870 [===============================================>---------------------------------------]  55%
  7088/12870 [===============================================>---------------------------------------]  55%
  7089/12870 [===============================================>---------------------------------------]  55%
  7090/12870 [===============================================>---------------------------------------]  55%
  7091/12870 [===============================================>---------------------------------------]  55%
  7092/12870 [===============================================>---------------------------------------]  55%
  7093/12870 [===============================================>---------------------------------------]  55%
  7094/12870 [===============================================>---------------------------------------]  55%
  7095/12870 [===============================================>---------------------------------------]  55%
  7096/12870 [===============================================>---------------------------------------]  55%
  7097/12870 [===============================================>---------------------------------------]  55%
  7098/12870 [===============================================>---------------------------------------]  55%
  7099/12870 [===============================================>---------------------------------------]  55%
  7100/12870 [===============================================>---------------------------------------]  55%
  7101/12870 [===============================================>---------------------------------------]  55%
  7102/12870 [===============================================>---------------------------------------]  55%
  7103/12870 [===============================================>---------------------------------------]  55%
  7104/12870 [===============================================>---------------------------------------]  55%
  7105/12870 [===============================================>---------------------------------------]  55%
  7106/12870 [===============================================>---------------------------------------]  55%
  7107/12870 [===============================================>---------------------------------------]  55%
  7108/12870 [===============================================>---------------------------------------]  55%
  7109/12870 [===============================================>---------------------------------------]  55%
  7110/12870 [===============================================>---------------------------------------]  55%
  7111/12870 [===============================================>---------------------------------------]  55%
  7112/12870 [===============================================>---------------------------------------]  55%
  7113/12870 [===============================================>---------------------------------------]  55%
  7114/12870 [===============================================>---------------------------------------]  55%
  7115/12870 [===============================================>---------------------------------------]  55%
  7116/12870 [===============================================>---------------------------------------]  55%
  7117/12870 [===============================================>---------------------------------------]  55%
  7118/12870 [===============================================>---------------------------------------]  55%
  7119/12870 [===============================================>---------------------------------------]  55%
  7120/12870 [===============================================>---------------------------------------]  55%
  7121/12870 [===============================================>---------------------------------------]  55%
  7122/12870 [===============================================>---------------------------------------]  55%
  7123/12870 [===============================================>---------------------------------------]  55%
  7124/12870 [===============================================>---------------------------------------]  55%
  7125/12870 [===============================================>---------------------------------------]  55%
  7126/12870 [===============================================>---------------------------------------]  55%
  7127/12870 [===============================================>---------------------------------------]  55%
  7128/12870 [===============================================>---------------------------------------]  55%
  7129/12870 [===============================================>---------------------------------------]  55%
  7130/12870 [===============================================>---------------------------------------]  55%
  7131/12870 [===============================================>---------------------------------------]  55%
  7132/12870 [===============================================>---------------------------------------]  55%
  7133/12870 [===============================================>---------------------------------------]  55%
  7134/12870 [===============================================>---------------------------------------]  55%
  7135/12870 [===============================================>---------------------------------------]  55%
  7136/12870 [===============================================>---------------------------------------]  55%
  7137/12870 [===============================================>---------------------------------------]  55%
  7138/12870 [===============================================>---------------------------------------]  55%
  7139/12870 [===============================================>---------------------------------------]  55%
  7140/12870 [===============================================>---------------------------------------]  55%
  7141/12870 [===============================================>---------------------------------------]  55%
  7142/12870 [===============================================>---------------------------------------]  55%
  7143/12870 [===============================================>---------------------------------------]  56%
  7144/12870 [===============================================>---------------------------------------]  56%
  7145/12870 [===============================================>---------------------------------------]  56%
  7146/12870 [===============================================>---------------------------------------]  56%
  7147/12870 [===============================================>---------------------------------------]  56%
  7148/12870 [===============================================>---------------------------------------]  56%
  7149/12870 [===============================================>---------------------------------------]  56%
  7150/12870 [===============================================>---------------------------------------]  56%
  7151/12870 [===============================================>---------------------------------------]  56%
  7152/12870 [===============================================>---------------------------------------]  56%
  7153/12870 [===============================================>---------------------------------------]  56%
  7154/12870 [===============================================>---------------------------------------]  56%
  7155/12870 [===============================================>---------------------------------------]  56%
  7156/12870 [===============================================>---------------------------------------]  56%
  7157/12870 [===============================================>---------------------------------------]  56%
  7158/12870 [===============================================>---------------------------------------]  56%
  7159/12870 [===============================================>---------------------------------------]  56%
  7160/12870 [===============================================>---------------------------------------]  56%
  7161/12870 [===============================================>---------------------------------------]  56%
  7162/12870 [===============================================>---------------------------------------]  56%
  7163/12870 [===============================================>---------------------------------------]  56%
  7164/12870 [===============================================>---------------------------------------]  56%
  7165/12870 [===============================================>---------------------------------------]  56%
  7166/12870 [===============================================>---------------------------------------]  56%
  7167/12870 [===============================================>---------------------------------------]  56%
  7168/12870 [===============================================>---------------------------------------]  56%
  7169/12870 [===============================================>---------------------------------------]  56%
  7170/12870 [===============================================>---------------------------------------]  56%
  7171/12870 [===============================================>---------------------------------------]  56%
  7172/12870 [===============================================>---------------------------------------]  56%
  7173/12870 [===============================================>---------------------------------------]  56%
  7174/12870 [===============================================>---------------------------------------]  56%
  7175/12870 [================================================>--------------------------------------]  56%
  7176/12870 [================================================>--------------------------------------]  56%
  7177/12870 [================================================>--------------------------------------]  56%
  7178/12870 [================================================>--------------------------------------]  56%
  7179/12870 [================================================>--------------------------------------]  56%
  7180/12870 [================================================>--------------------------------------]  56%
  7181/12870 [================================================>--------------------------------------]  56%
  7182/12870 [================================================>--------------------------------------]  56%
  7183/12870 [================================================>--------------------------------------]  56%
  7184/12870 [================================================>--------------------------------------]  56%
  7185/12870 [================================================>--------------------------------------]  56%
  7186/12870 [================================================>--------------------------------------]  56%
  7187/12870 [================================================>--------------------------------------]  56%
  7188/12870 [================================================>--------------------------------------]  56%
  7189/12870 [================================================>--------------------------------------]  56%
  7190/12870 [================================================>--------------------------------------]  56%
  7191/12870 [================================================>--------------------------------------]  56%
  7192/12870 [================================================>--------------------------------------]  56%
  7193/12870 [================================================>--------------------------------------]  56%
  7194/12870 [================================================>--------------------------------------]  56%
  7195/12870 [================================================>--------------------------------------]  56%
  7196/12870 [================================================>--------------------------------------]  56%
  7197/12870 [================================================>--------------------------------------]  56%
  7198/12870 [================================================>--------------------------------------]  56%
  7199/12870 [================================================>--------------------------------------]  56%
  7200/12870 [================================================>--------------------------------------]  56%
  7201/12870 [================================================>--------------------------------------]  56%
  7202/12870 [================================================>--------------------------------------]  56%
  7203/12870 [================================================>--------------------------------------]  56%
  7204/12870 [================================================>--------------------------------------]  56%
  7205/12870 [================================================>--------------------------------------]  56%
  7206/12870 [================================================>--------------------------------------]  56%
  7207/12870 [================================================>--------------------------------------]  56%
  7208/12870 [================================================>--------------------------------------]  56%
  7209/12870 [================================================>--------------------------------------]  56%
  7210/12870 [================================================>--------------------------------------]  56%
  7211/12870 [================================================>--------------------------------------]  56%
  7212/12870 [================================================>--------------------------------------]  56%
  7213/12870 [================================================>--------------------------------------]  56%
  7214/12870 [================================================>--------------------------------------]  56%
  7215/12870 [================================================>--------------------------------------]  56%
  7216/12870 [================================================>--------------------------------------]  56%
  7217/12870 [================================================>--------------------------------------]  56%
  7218/12870 [================================================>--------------------------------------]  56%
  7219/12870 [================================================>--------------------------------------]  56%
  7220/12870 [================================================>--------------------------------------]  56%
  7221/12870 [================================================>--------------------------------------]  56%
  7222/12870 [================================================>--------------------------------------]  56%
  7223/12870 [================================================>--------------------------------------]  56%
  7224/12870 [================================================>--------------------------------------]  56%
  7225/12870 [================================================>--------------------------------------]  56%
  7226/12870 [================================================>--------------------------------------]  56%
  7227/12870 [================================================>--------------------------------------]  56%
  7228/12870 [================================================>--------------------------------------]  56%
  7229/12870 [================================================>--------------------------------------]  56%
  7230/12870 [================================================>--------------------------------------]  56%
  7231/12870 [================================================>--------------------------------------]  56%
  7232/12870 [================================================>--------------------------------------]  56%
  7233/12870 [================================================>--------------------------------------]  56%
  7234/12870 [================================================>--------------------------------------]  56%
  7235/12870 [================================================>--------------------------------------]  56%
  7236/12870 [================================================>--------------------------------------]  56%
  7237/12870 [================================================>--------------------------------------]  56%
  7238/12870 [================================================>--------------------------------------]  56%
  7239/12870 [================================================>--------------------------------------]  56%
  7240/12870 [================================================>--------------------------------------]  56%
  7241/12870 [================================================>--------------------------------------]  56%
  7242/12870 [================================================>--------------------------------------]  56%
  7243/12870 [================================================>--------------------------------------]  56%
  7244/12870 [================================================>--------------------------------------]  56%
  7245/12870 [================================================>--------------------------------------]  56%
  7246/12870 [================================================>--------------------------------------]  56%
  7247/12870 [================================================>--------------------------------------]  56%
  7248/12870 [================================================>--------------------------------------]  56%
  7249/12870 [================================================>--------------------------------------]  56%
  7250/12870 [================================================>--------------------------------------]  56%
  7251/12870 [================================================>--------------------------------------]  56%
  7252/12870 [================================================>--------------------------------------]  56%
  7253/12870 [================================================>--------------------------------------]  56%
  7254/12870 [================================================>--------------------------------------]  56%
  7255/12870 [================================================>--------------------------------------]  56%
  7256/12870 [================================================>--------------------------------------]  56%
  7257/12870 [================================================>--------------------------------------]  56%
  7258/12870 [================================================>--------------------------------------]  56%
  7259/12870 [================================================>--------------------------------------]  56%
  7260/12870 [================================================>--------------------------------------]  56%
  7261/12870 [================================================>--------------------------------------]  56%
  7262/12870 [================================================>--------------------------------------]  56%
  7263/12870 [================================================>--------------------------------------]  56%
  7264/12870 [================================================>--------------------------------------]  56%
  7265/12870 [================================================>--------------------------------------]  56%
  7266/12870 [================================================>--------------------------------------]  56%
  7267/12870 [================================================>--------------------------------------]  56%
  7268/12870 [================================================>--------------------------------------]  56%
  7269/12870 [================================================>--------------------------------------]  56%
  7270/12870 [================================================>--------------------------------------]  56%
  7271/12870 [================================================>--------------------------------------]  56%
  7272/12870 [================================================>--------------------------------------]  57%
  7273/12870 [================================================>--------------------------------------]  57%
  7274/12870 [================================================>--------------------------------------]  57%
  7275/12870 [================================================>--------------------------------------]  57%
  7276/12870 [================================================>--------------------------------------]  57%
  7277/12870 [================================================>--------------------------------------]  57%
  7278/12870 [================================================>--------------------------------------]  57%
  7279/12870 [================================================>--------------------------------------]  57%
  7280/12870 [================================================>--------------------------------------]  57%
  7281/12870 [================================================>--------------------------------------]  57%
  7282/12870 [================================================>--------------------------------------]  57%
  7283/12870 [================================================>--------------------------------------]  57%
  7284/12870 [================================================>--------------------------------------]  57%
  7285/12870 [================================================>--------------------------------------]  57%
  7286/12870 [================================================>--------------------------------------]  57%
  7287/12870 [================================================>--------------------------------------]  57%
  7288/12870 [================================================>--------------------------------------]  57%
  7289/12870 [================================================>--------------------------------------]  57%
  7290/12870 [================================================>--------------------------------------]  57%
  7291/12870 [================================================>--------------------------------------]  57%
  7292/12870 [================================================>--------------------------------------]  57%
  7293/12870 [================================================>--------------------------------------]  57%
  7294/12870 [================================================>--------------------------------------]  57%
  7295/12870 [================================================>--------------------------------------]  57%
  7296/12870 [================================================>--------------------------------------]  57%
  7297/12870 [================================================>--------------------------------------]  57%
  7298/12870 [================================================>--------------------------------------]  57%
  7299/12870 [================================================>--------------------------------------]  57%
  7300/12870 [================================================>--------------------------------------]  57%
  7301/12870 [================================================>--------------------------------------]  57%
  7302/12870 [================================================>--------------------------------------]  57%
  7303/12870 [================================================>--------------------------------------]  57%
  7304/12870 [================================================>--------------------------------------]  57%
  7305/12870 [================================================>--------------------------------------]  57%
  7306/12870 [================================================>--------------------------------------]  57%
  7307/12870 [================================================>--------------------------------------]  57%
  7308/12870 [================================================>--------------------------------------]  57%
  7309/12870 [================================================>--------------------------------------]  57%
  7310/12870 [================================================>--------------------------------------]  57%
  7311/12870 [================================================>--------------------------------------]  57%
  7312/12870 [================================================>--------------------------------------]  57%
  7313/12870 [================================================>--------------------------------------]  57%
  7314/12870 [================================================>--------------------------------------]  57%
  7315/12870 [================================================>--------------------------------------]  57%
  7316/12870 [================================================>--------------------------------------]  57%
  7317/12870 [================================================>--------------------------------------]  57%
  7318/12870 [================================================>--------------------------------------]  57%
  7319/12870 [================================================>--------------------------------------]  57%
  7320/12870 [================================================>--------------------------------------]  57%
  7321/12870 [================================================>--------------------------------------]  57%
  7322/12870 [================================================>--------------------------------------]  57%
  7323/12870 [=================================================>-------------------------------------]  57%
  7324/12870 [=================================================>-------------------------------------]  57%
  7325/12870 [=================================================>-------------------------------------]  57%
  7326/12870 [=================================================>-------------------------------------]  57%
  7327/12870 [=================================================>-------------------------------------]  57%
  7328/12870 [=================================================>-------------------------------------]  57%
  7329/12870 [=================================================>-------------------------------------]  57%
  7330/12870 [=================================================>-------------------------------------]  57%
  7331/12870 [=================================================>-------------------------------------]  57%
  7332/12870 [=================================================>-------------------------------------]  57%
  7333/12870 [=================================================>-------------------------------------]  57%
  7334/12870 [=================================================>-------------------------------------]  57%
  7335/12870 [=================================================>-------------------------------------]  57%
  7336/12870 [=================================================>-------------------------------------]  57%
  7337/12870 [=================================================>-------------------------------------]  57%
  7338/12870 [=================================================>-------------------------------------]  57%
  7339/12870 [=================================================>-------------------------------------]  57%
  7340/12870 [=================================================>-------------------------------------]  57%
  7341/12870 [=================================================>-------------------------------------]  57%
  7342/12870 [=================================================>-------------------------------------]  57%
  7343/12870 [=================================================>-------------------------------------]  57%
  7344/12870 [=================================================>-------------------------------------]  57%
  7345/12870 [=================================================>-------------------------------------]  57%
  7346/12870 [=================================================>-------------------------------------]  57%
  7347/12870 [=================================================>-------------------------------------]  57%
  7348/12870 [=================================================>-------------------------------------]  57%
  7349/12870 [=================================================>-------------------------------------]  57%
  7350/12870 [=================================================>-------------------------------------]  57%
  7351/12870 [=================================================>-------------------------------------]  57%
  7352/12870 [=================================================>-------------------------------------]  57%
  7353/12870 [=================================================>-------------------------------------]  57%
  7354/12870 [=================================================>-------------------------------------]  57%
  7355/12870 [=================================================>-------------------------------------]  57%
  7356/12870 [=================================================>-------------------------------------]  57%
  7357/12870 [=================================================>-------------------------------------]  57%
  7358/12870 [=================================================>-------------------------------------]  57%
  7359/12870 [=================================================>-------------------------------------]  57%
  7360/12870 [=================================================>-------------------------------------]  57%
  7361/12870 [=================================================>-------------------------------------]  57%
  7362/12870 [=================================================>-------------------------------------]  57%
  7363/12870 [=================================================>-------------------------------------]  57%
  7364/12870 [=================================================>-------------------------------------]  57%
  7365/12870 [=================================================>-------------------------------------]  57%
  7366/12870 [=================================================>-------------------------------------]  57%
  7367/12870 [=================================================>-------------------------------------]  57%
  7368/12870 [=================================================>-------------------------------------]  57%
  7369/12870 [=================================================>-------------------------------------]  57%
  7370/12870 [=================================================>-------------------------------------]  57%
  7371/12870 [=================================================>-------------------------------------]  57%
  7372/12870 [=================================================>-------------------------------------]  57%
  7373/12870 [=================================================>-------------------------------------]  57%
  7374/12870 [=================================================>-------------------------------------]  57%
  7375/12870 [=================================================>-------------------------------------]  57%
  7376/12870 [=================================================>-------------------------------------]  57%
  7377/12870 [=================================================>-------------------------------------]  57%
  7378/12870 [=================================================>-------------------------------------]  57%
  7379/12870 [=================================================>-------------------------------------]  57%
  7380/12870 [=================================================>-------------------------------------]  57%
  7381/12870 [=================================================>-------------------------------------]  57%
  7382/12870 [=================================================>-------------------------------------]  57%
  7383/12870 [=================================================>-------------------------------------]  57%
  7384/12870 [=================================================>-------------------------------------]  57%
  7385/12870 [=================================================>-------------------------------------]  57%
  7386/12870 [=================================================>-------------------------------------]  57%
  7387/12870 [=================================================>-------------------------------------]  57%
  7388/12870 [=================================================>-------------------------------------]  57%
  7389/12870 [=================================================>-------------------------------------]  57%
  7390/12870 [=================================================>-------------------------------------]  57%
  7391/12870 [=================================================>-------------------------------------]  57%
  7392/12870 [=================================================>-------------------------------------]  57%
  7393/12870 [=================================================>-------------------------------------]  57%
  7394/12870 [=================================================>-------------------------------------]  57%
  7395/12870 [=================================================>-------------------------------------]  57%
  7396/12870 [=================================================>-------------------------------------]  57%
  7397/12870 [=================================================>-------------------------------------]  57%
  7398/12870 [=================================================>-------------------------------------]  57%
  7399/12870 [=================================================>-------------------------------------]  57%
  7400/12870 [=================================================>-------------------------------------]  57%
  7401/12870 [=================================================>-------------------------------------]  58%
  7402/12870 [=================================================>-------------------------------------]  58%
  7403/12870 [=================================================>-------------------------------------]  58%
  7404/12870 [=================================================>-------------------------------------]  58%
  7405/12870 [=================================================>-------------------------------------]  58%
  7406/12870 [=================================================>-------------------------------------]  58%
  7407/12870 [=================================================>-------------------------------------]  58%
  7408/12870 [=================================================>-------------------------------------]  58%
  7409/12870 [=================================================>-------------------------------------]  58%
  7410/12870 [=================================================>-------------------------------------]  58%
  7411/12870 [=================================================>-------------------------------------]  58%
  7412/12870 [=================================================>-------------------------------------]  58%
  7413/12870 [=================================================>-------------------------------------]  58%
  7414/12870 [=================================================>-------------------------------------]  58%
  7415/12870 [=================================================>-------------------------------------]  58%
  7416/12870 [=================================================>-------------------------------------]  58%
  7417/12870 [=================================================>-------------------------------------]  58%
  7418/12870 [=================================================>-------------------------------------]  58%
  7419/12870 [=================================================>-------------------------------------]  58%
  7420/12870 [=================================================>-------------------------------------]  58%
  7421/12870 [=================================================>-------------------------------------]  58%
  7422/12870 [=================================================>-------------------------------------]  58%
  7423/12870 [=================================================>-------------------------------------]  58%
  7424/12870 [=================================================>-------------------------------------]  58%
  7425/12870 [=================================================>-------------------------------------]  58%
  7426/12870 [=================================================>-------------------------------------]  58%
  7427/12870 [=================================================>-------------------------------------]  58%
  7428/12870 [=================================================>-------------------------------------]  58%
  7429/12870 [=================================================>-------------------------------------]  58%
  7430/12870 [=================================================>-------------------------------------]  58%
  7431/12870 [=================================================>-------------------------------------]  58%
  7432/12870 [=================================================>-------------------------------------]  58%
  7433/12870 [=================================================>-------------------------------------]  58%
  7434/12870 [=================================================>-------------------------------------]  58%
  7435/12870 [=================================================>-------------------------------------]  58%
  7436/12870 [=================================================>-------------------------------------]  58%
  7437/12870 [=================================================>-------------------------------------]  58%
  7438/12870 [=================================================>-------------------------------------]  58%
  7439/12870 [=================================================>-------------------------------------]  58%
  7440/12870 [=================================================>-------------------------------------]  58%
  7441/12870 [=================================================>-------------------------------------]  58%
  7442/12870 [=================================================>-------------------------------------]  58%
  7443/12870 [=================================================>-------------------------------------]  58%
  7444/12870 [=================================================>-------------------------------------]  58%
  7445/12870 [=================================================>-------------------------------------]  58%
  7446/12870 [=================================================>-------------------------------------]  58%
  7447/12870 [=================================================>-------------------------------------]  58%
  7448/12870 [=================================================>-------------------------------------]  58%
  7449/12870 [=================================================>-------------------------------------]  58%
  7450/12870 [=================================================>-------------------------------------]  58%
  7451/12870 [=================================================>-------------------------------------]  58%
  7452/12870 [=================================================>-------------------------------------]  58%
  7453/12870 [=================================================>-------------------------------------]  58%
  7454/12870 [=================================================>-------------------------------------]  58%
  7455/12870 [=================================================>-------------------------------------]  58%
  7456/12870 [=================================================>-------------------------------------]  58%
  7457/12870 [=================================================>-------------------------------------]  58%
  7458/12870 [=================================================>-------------------------------------]  58%
  7459/12870 [=================================================>-------------------------------------]  58%
  7460/12870 [=================================================>-------------------------------------]  58%
  7461/12870 [=================================================>-------------------------------------]  58%
  7462/12870 [=================================================>-------------------------------------]  58%
  7463/12870 [=================================================>-------------------------------------]  58%
  7464/12870 [=================================================>-------------------------------------]  58%
  7465/12870 [=================================================>-------------------------------------]  58%
  7466/12870 [=================================================>-------------------------------------]  58%
  7467/12870 [=================================================>-------------------------------------]  58%
  7468/12870 [=================================================>-------------------------------------]  58%
  7469/12870 [=================================================>-------------------------------------]  58%
  7470/12870 [=================================================>-------------------------------------]  58%
  7471/12870 [==================================================>------------------------------------]  58%
  7472/12870 [==================================================>------------------------------------]  58%
  7473/12870 [==================================================>------------------------------------]  58%
  7474/12870 [==================================================>------------------------------------]  58%
  7475/12870 [==================================================>------------------------------------]  58%
  7476/12870 [==================================================>------------------------------------]  58%
  7477/12870 [==================================================>------------------------------------]  58%
  7478/12870 [==================================================>------------------------------------]  58%
  7479/12870 [==================================================>------------------------------------]  58%
  7480/12870 [==================================================>------------------------------------]  58%
  7481/12870 [==================================================>------------------------------------]  58%
  7482/12870 [==================================================>------------------------------------]  58%
  7483/12870 [==================================================>------------------------------------]  58%
  7484/12870 [==================================================>------------------------------------]  58%
  7485/12870 [==================================================>------------------------------------]  58%
  7486/12870 [==================================================>------------------------------------]  58%
  7487/12870 [==================================================>------------------------------------]  58%
  7488/12870 [==================================================>------------------------------------]  58%
  7489/12870 [==================================================>------------------------------------]  58%
  7490/12870 [==================================================>------------------------------------]  58%
  7491/12870 [==================================================>------------------------------------]  58%
  7492/12870 [==================================================>------------------------------------]  58%
  7493/12870 [==================================================>------------------------------------]  58%
  7494/12870 [==================================================>------------------------------------]  58%
  7495/12870 [==================================================>------------------------------------]  58%
  7496/12870 [==================================================>------------------------------------]  58%
  7497/12870 [==================================================>------------------------------------]  58%
  7498/12870 [==================================================>------------------------------------]  58%
  7499/12870 [==================================================>------------------------------------]  58%
  7500/12870 [==================================================>------------------------------------]  58%
  7501/12870 [==================================================>------------------------------------]  58%
  7502/12870 [==================================================>------------------------------------]  58%
  7503/12870 [==================================================>------------------------------------]  58%
  7504/12870 [==================================================>------------------------------------]  58%
  7505/12870 [==================================================>------------------------------------]  58%
  7506/12870 [==================================================>------------------------------------]  58%
  7507/12870 [==================================================>------------------------------------]  58%
  7508/12870 [==================================================>------------------------------------]  58%
  7509/12870 [==================================================>------------------------------------]  58%
  7510/12870 [==================================================>------------------------------------]  58%
  7511/12870 [==================================================>------------------------------------]  58%
  7512/12870 [==================================================>------------------------------------]  58%
  7513/12870 [==================================================>------------------------------------]  58%
  7514/12870 [==================================================>------------------------------------]  58%
  7515/12870 [==================================================>------------------------------------]  58%
  7516/12870 [==================================================>------------------------------------]  58%
  7517/12870 [==================================================>------------------------------------]  58%
  7518/12870 [==================================================>------------------------------------]  58%
  7519/12870 [==================================================>------------------------------------]  58%
  7520/12870 [==================================================>------------------------------------]  58%
  7521/12870 [==================================================>------------------------------------]  58%
  7522/12870 [==================================================>------------------------------------]  58%
  7523/12870 [==================================================>------------------------------------]  58%
  7524/12870 [==================================================>------------------------------------]  58%
  7525/12870 [==================================================>------------------------------------]  58%
  7526/12870 [==================================================>------------------------------------]  58%
  7527/12870 [==================================================>------------------------------------]  58%
  7528/12870 [==================================================>------------------------------------]  58%
  7529/12870 [==================================================>------------------------------------]  59%
  7530/12870 [==================================================>------------------------------------]  59%
  7531/12870 [==================================================>------------------------------------]  59%
  7532/12870 [==================================================>------------------------------------]  59%
  7533/12870 [==================================================>------------------------------------]  59%
  7534/12870 [==================================================>------------------------------------]  59%
  7535/12870 [==================================================>------------------------------------]  59%
  7536/12870 [==================================================>------------------------------------]  59%
  7537/12870 [==================================================>------------------------------------]  59%
  7538/12870 [==================================================>------------------------------------]  59%
  7539/12870 [==================================================>------------------------------------]  59%
  7540/12870 [==================================================>------------------------------------]  59%
  7541/12870 [==================================================>------------------------------------]  59%
  7542/12870 [==================================================>------------------------------------]  59%
  7543/12870 [==================================================>------------------------------------]  59%
  7544/12870 [==================================================>------------------------------------]  59%
  7545/12870 [==================================================>------------------------------------]  59%
  7546/12870 [==================================================>------------------------------------]  59%
  7547/12870 [==================================================>------------------------------------]  59%
  7548/12870 [==================================================>------------------------------------]  59%
  7549/12870 [==================================================>------------------------------------]  59%
  7550/12870 [==================================================>------------------------------------]  59%
  7551/12870 [==================================================>------------------------------------]  59%
  7552/12870 [==================================================>------------------------------------]  59%
  7553/12870 [==================================================>------------------------------------]  59%
  7554/12870 [==================================================>------------------------------------]  59%
  7555/12870 [==================================================>------------------------------------]  59%
  7556/12870 [==================================================>------------------------------------]  59%
  7557/12870 [==================================================>------------------------------------]  59%
  7558/12870 [==================================================>------------------------------------]  59%
  7559/12870 [==================================================>------------------------------------]  59%
  7560/12870 [==================================================>------------------------------------]  59%
  7561/12870 [==================================================>------------------------------------]  59%
  7562/12870 [==================================================>------------------------------------]  59%
  7563/12870 [==================================================>------------------------------------]  59%
  7564/12870 [==================================================>------------------------------------]  59%
  7565/12870 [==================================================>------------------------------------]  59%
  7566/12870 [==================================================>------------------------------------]  59%
  7567/12870 [==================================================>------------------------------------]  59%
  7568/12870 [==================================================>------------------------------------]  59%
  7569/12870 [==================================================>------------------------------------]  59%
  7570/12870 [==================================================>------------------------------------]  59%
  7571/12870 [==================================================>------------------------------------]  59%
  7572/12870 [==================================================>------------------------------------]  59%
  7573/12870 [==================================================>------------------------------------]  59%
  7574/12870 [==================================================>------------------------------------]  59%
  7575/12870 [==================================================>------------------------------------]  59%
  7576/12870 [==================================================>------------------------------------]  59%
  7577/12870 [==================================================>------------------------------------]  59%
  7578/12870 [==================================================>------------------------------------]  59%
  7579/12870 [==================================================>------------------------------------]  59%
  7580/12870 [==================================================>------------------------------------]  59%
  7581/12870 [==================================================>------------------------------------]  59%
  7582/12870 [==================================================>------------------------------------]  59%
  7583/12870 [==================================================>------------------------------------]  59%
  7584/12870 [==================================================>------------------------------------]  59%
  7585/12870 [==================================================>------------------------------------]  59%
  7586/12870 [==================================================>------------------------------------]  59%
  7587/12870 [==================================================>------------------------------------]  59%
  7588/12870 [==================================================>------------------------------------]  59%
  7589/12870 [==================================================>------------------------------------]  59%
  7590/12870 [==================================================>------------------------------------]  59%
  7591/12870 [==================================================>------------------------------------]  59%
  7592/12870 [==================================================>------------------------------------]  59%
  7593/12870 [==================================================>------------------------------------]  59%
  7594/12870 [==================================================>------------------------------------]  59%
  7595/12870 [==================================================>------------------------------------]  59%
  7596/12870 [==================================================>------------------------------------]  59%
  7597/12870 [==================================================>------------------------------------]  59%
  7598/12870 [==================================================>------------------------------------]  59%
  7599/12870 [==================================================>------------------------------------]  59%
  7600/12870 [==================================================>------------------------------------]  59%
  7601/12870 [==================================================>------------------------------------]  59%
  7602/12870 [==================================================>------------------------------------]  59%
  7603/12870 [==================================================>------------------------------------]  59%
  7604/12870 [==================================================>------------------------------------]  59%
  7605/12870 [==================================================>------------------------------------]  59%
  7606/12870 [==================================================>------------------------------------]  59%
  7607/12870 [==================================================>------------------------------------]  59%
  7608/12870 [==================================================>------------------------------------]  59%
  7609/12870 [==================================================>------------------------------------]  59%
  7610/12870 [==================================================>------------------------------------]  59%
  7611/12870 [==================================================>------------------------------------]  59%
  7612/12870 [==================================================>------------------------------------]  59%
  7613/12870 [==================================================>------------------------------------]  59%
  7614/12870 [==================================================>------------------------------------]  59%
  7615/12870 [==================================================>------------------------------------]  59%
  7616/12870 [==================================================>------------------------------------]  59%
  7617/12870 [==================================================>------------------------------------]  59%
  7618/12870 [==================================================>------------------------------------]  59%
  7619/12870 [===================================================>-----------------------------------]  59%
  7620/12870 [===================================================>-----------------------------------]  59%
  7621/12870 [===================================================>-----------------------------------]  59%
  7622/12870 [===================================================>-----------------------------------]  59%
  7623/12870 [===================================================>-----------------------------------]  59%
  7624/12870 [===================================================>-----------------------------------]  59%
  7625/12870 [===================================================>-----------------------------------]  59%
  7626/12870 [===================================================>-----------------------------------]  59%
  7627/12870 [===================================================>-----------------------------------]  59%
  7628/12870 [===================================================>-----------------------------------]  59%
  7629/12870 [===================================================>-----------------------------------]  59%
  7630/12870 [===================================================>-----------------------------------]  59%
  7631/12870 [===================================================>-----------------------------------]  59%
  7632/12870 [===================================================>-----------------------------------]  59%
  7633/12870 [===================================================>-----------------------------------]  59%
  7634/12870 [===================================================>-----------------------------------]  59%
  7635/12870 [===================================================>-----------------------------------]  59%
  7636/12870 [===================================================>-----------------------------------]  59%
  7637/12870 [===================================================>-----------------------------------]  59%
  7638/12870 [===================================================>-----------------------------------]  59%
  7639/12870 [===================================================>-----------------------------------]  59%
  7640/12870 [===================================================>-----------------------------------]  59%
  7641/12870 [===================================================>-----------------------------------]  59%
  7642/12870 [===================================================>-----------------------------------]  59%
  7643/12870 [===================================================>-----------------------------------]  59%
  7644/12870 [===================================================>-----------------------------------]  59%
  7645/12870 [===================================================>-----------------------------------]  59%
  7646/12870 [===================================================>-----------------------------------]  59%
  7647/12870 [===================================================>-----------------------------------]  59%
  7648/12870 [===================================================>-----------------------------------]  59%
  7649/12870 [===================================================>-----------------------------------]  59%
  7650/12870 [===================================================>-----------------------------------]  59%
  7651/12870 [===================================================>-----------------------------------]  59%
  7652/12870 [===================================================>-----------------------------------]  59%
  7653/12870 [===================================================>-----------------------------------]  59%
  7654/12870 [===================================================>-----------------------------------]  59%
  7655/12870 [===================================================>-----------------------------------]  59%
  7656/12870 [===================================================>-----------------------------------]  59%
  7657/12870 [===================================================>-----------------------------------]  59%
  7658/12870 [===================================================>-----------------------------------]  60%
  7659/12870 [===================================================>-----------------------------------]  60%
  7660/12870 [===================================================>-----------------------------------]  60%
  7661/12870 [===================================================>-----------------------------------]  60%
  7662/12870 [===================================================>-----------------------------------]  60%
  7663/12870 [===================================================>-----------------------------------]  60%
  7664/12870 [===================================================>-----------------------------------]  60%
  7665/12870 [===================================================>-----------------------------------]  60%
  7666/12870 [===================================================>-----------------------------------]  60%
  7667/12870 [===================================================>-----------------------------------]  60%
  7668/12870 [===================================================>-----------------------------------]  60%
  7669/12870 [===================================================>-----------------------------------]  60%
  7670/12870 [===================================================>-----------------------------------]  60%
  7671/12870 [===================================================>-----------------------------------]  60%
  7672/12870 [===================================================>-----------------------------------]  60%
  7673/12870 [===================================================>-----------------------------------]  60%
  7674/12870 [===================================================>-----------------------------------]  60%
  7675/12870 [===================================================>-----------------------------------]  60%
  7676/12870 [===================================================>-----------------------------------]  60%
  7677/12870 [===================================================>-----------------------------------]  60%
  7678/12870 [===================================================>-----------------------------------]  60%
  7679/12870 [===================================================>-----------------------------------]  60%
  7680/12870 [===================================================>-----------------------------------]  60%
  7681/12870 [===================================================>-----------------------------------]  60%
  7682/12870 [===================================================>-----------------------------------]  60%
  7683/12870 [===================================================>-----------------------------------]  60%
  7684/12870 [===================================================>-----------------------------------]  60%
  7685/12870 [===================================================>-----------------------------------]  60%
  7686/12870 [===================================================>-----------------------------------]  60%
  7687/12870 [===================================================>-----------------------------------]  60%
  7688/12870 [===================================================>-----------------------------------]  60%
  7689/12870 [===================================================>-----------------------------------]  60%
  7690/12870 [===================================================>-----------------------------------]  60%
  7691/12870 [===================================================>-----------------------------------]  60%
  7692/12870 [===================================================>-----------------------------------]  60%
  7693/12870 [===================================================>-----------------------------------]  60%
  7694/12870 [===================================================>-----------------------------------]  60%
  7695/12870 [===================================================>-----------------------------------]  60%
  7696/12870 [===================================================>-----------------------------------]  60%
  7697/12870 [===================================================>-----------------------------------]  60%
  7698/12870 [===================================================>-----------------------------------]  60%
  7699/12870 [===================================================>-----------------------------------]  60%
  7700/12870 [===================================================>-----------------------------------]  60%
  7701/12870 [===================================================>-----------------------------------]  60%
  7702/12870 [===================================================>-----------------------------------]  60%
  7703/12870 [===================================================>-----------------------------------]  60%
  7704/12870 [===================================================>-----------------------------------]  60%
  7705/12870 [===================================================>-----------------------------------]  60%
  7706/12870 [===================================================>-----------------------------------]  60%
  7707/12870 [===================================================>-----------------------------------]  60%
  7708/12870 [===================================================>-----------------------------------]  60%
  7709/12870 [===================================================>-----------------------------------]  60%
  7710/12870 [===================================================>-----------------------------------]  60%
  7711/12870 [===================================================>-----------------------------------]  60%
  7712/12870 [===================================================>-----------------------------------]  60%
  7713/12870 [===================================================>-----------------------------------]  60%
  7714/12870 [===================================================>-----------------------------------]  60%
  7715/12870 [===================================================>-----------------------------------]  60%
  7716/12870 [===================================================>-----------------------------------]  60%
  7717/12870 [===================================================>-----------------------------------]  60%
  7718/12870 [===================================================>-----------------------------------]  60%
  7719/12870 [===================================================>-----------------------------------]  60%
  7720/12870 [===================================================>-----------------------------------]  60%
  7721/12870 [===================================================>-----------------------------------]  60%
  7722/12870 [===================================================>-----------------------------------]  60%
  7723/12870 [===================================================>-----------------------------------]  60%
  7724/12870 [===================================================>-----------------------------------]  60%
  7725/12870 [===================================================>-----------------------------------]  60%
  7726/12870 [===================================================>-----------------------------------]  60%
  7727/12870 [===================================================>-----------------------------------]  60%
  7728/12870 [===================================================>-----------------------------------]  60%
  7729/12870 [===================================================>-----------------------------------]  60%
  7730/12870 [===================================================>-----------------------------------]  60%
  7731/12870 [===================================================>-----------------------------------]  60%
  7732/12870 [===================================================>-----------------------------------]  60%
  7733/12870 [===================================================>-----------------------------------]  60%
  7734/12870 [===================================================>-----------------------------------]  60%
  7735/12870 [===================================================>-----------------------------------]  60%
  7736/12870 [===================================================>-----------------------------------]  60%
  7737/12870 [===================================================>-----------------------------------]  60%
  7738/12870 [===================================================>-----------------------------------]  60%
  7739/12870 [===================================================>-----------------------------------]  60%
  7740/12870 [===================================================>-----------------------------------]  60%
  7741/12870 [===================================================>-----------------------------------]  60%
  7742/12870 [===================================================>-----------------------------------]  60%
  7743/12870 [===================================================>-----------------------------------]  60%
  7744/12870 [===================================================>-----------------------------------]  60%
  7745/12870 [===================================================>-----------------------------------]  60%
  7746/12870 [===================================================>-----------------------------------]  60%
  7747/12870 [===================================================>-----------------------------------]  60%
  7748/12870 [===================================================>-----------------------------------]  60%
  7749/12870 [===================================================>-----------------------------------]  60%
  7750/12870 [===================================================>-----------------------------------]  60%
  7751/12870 [===================================================>-----------------------------------]  60%
  7752/12870 [===================================================>-----------------------------------]  60%
  7753/12870 [===================================================>-----------------------------------]  60%
  7754/12870 [===================================================>-----------------------------------]  60%
  7755/12870 [===================================================>-----------------------------------]  60%
  7756/12870 [===================================================>-----------------------------------]  60%
  7757/12870 [===================================================>-----------------------------------]  60%
  7758/12870 [===================================================>-----------------------------------]  60%
  7759/12870 [===================================================>-----------------------------------]  60%
  7760/12870 [===================================================>-----------------------------------]  60%
  7761/12870 [===================================================>-----------------------------------]  60%
  7762/12870 [===================================================>-----------------------------------]  60%
  7763/12870 [===================================================>-----------------------------------]  60%
  7764/12870 [===================================================>-----------------------------------]  60%
  7765/12870 [===================================================>-----------------------------------]  60%
  7766/12870 [===================================================>-----------------------------------]  60%
  7767/12870 [====================================================>----------------------------------]  60%
  7768/12870 [====================================================>----------------------------------]  60%
  7769/12870 [====================================================>----------------------------------]  60%
  7770/12870 [====================================================>----------------------------------]  60%
  7771/12870 [====================================================>----------------------------------]  60%
  7772/12870 [====================================================>----------------------------------]  60%
  7773/12870 [====================================================>----------------------------------]  60%
  7774/12870 [====================================================>----------------------------------]  60%
  7775/12870 [====================================================>----------------------------------]  60%
  7776/12870 [====================================================>----------------------------------]  60%
  7777/12870 [====================================================>----------------------------------]  60%
  7778/12870 [====================================================>----------------------------------]  60%
  7779/12870 [====================================================>----------------------------------]  60%
  7780/12870 [====================================================>----------------------------------]  60%
  7781/12870 [====================================================>----------------------------------]  60%
  7782/12870 [====================================================>----------------------------------]  60%
  7783/12870 [====================================================>----------------------------------]  60%
  7784/12870 [====================================================>----------------------------------]  60%
  7785/12870 [====================================================>----------------------------------]  60%
  7786/12870 [====================================================>----------------------------------]  60%
  7787/12870 [====================================================>----------------------------------]  61%
  7788/12870 [====================================================>----------------------------------]  61%
  7789/12870 [====================================================>----------------------------------]  61%
  7790/12870 [====================================================>----------------------------------]  61%
  7791/12870 [====================================================>----------------------------------]  61%
  7792/12870 [====================================================>----------------------------------]  61%
  7793/12870 [====================================================>----------------------------------]  61%
  7794/12870 [====================================================>----------------------------------]  61%
  7795/12870 [====================================================>----------------------------------]  61%
  7796/12870 [====================================================>----------------------------------]  61%
  7797/12870 [====================================================>----------------------------------]  61%
  7798/12870 [====================================================>----------------------------------]  61%
  7799/12870 [====================================================>----------------------------------]  61%
  7800/12870 [====================================================>----------------------------------]  61%
  7801/12870 [====================================================>----------------------------------]  61%
  7802/12870 [====================================================>----------------------------------]  61%
  7803/12870 [====================================================>----------------------------------]  61%
  7804/12870 [====================================================>----------------------------------]  61%
  7805/12870 [====================================================>----------------------------------]  61%
  7806/12870 [====================================================>----------------------------------]  61%
  7807/12870 [====================================================>----------------------------------]  61%
  7808/12870 [====================================================>----------------------------------]  61%
  7809/12870 [====================================================>----------------------------------]  61%
  7810/12870 [====================================================>----------------------------------]  61%
  7811/12870 [====================================================>----------------------------------]  61%
  7812/12870 [====================================================>----------------------------------]  61%
  7813/12870 [====================================================>----------------------------------]  61%
  7814/12870 [====================================================>----------------------------------]  61%
  7815/12870 [====================================================>----------------------------------]  61%
  7816/12870 [====================================================>----------------------------------]  61%
  7817/12870 [====================================================>----------------------------------]  61%
  7818/12870 [====================================================>----------------------------------]  61%
  7819/12870 [====================================================>----------------------------------]  61%
  7820/12870 [====================================================>----------------------------------]  61%
  7821/12870 [====================================================>----------------------------------]  61%
  7822/12870 [====================================================>----------------------------------]  61%
  7823/12870 [====================================================>----------------------------------]  61%
  7824/12870 [====================================================>----------------------------------]  61%
  7825/12870 [====================================================>----------------------------------]  61%
  7826/12870 [====================================================>----------------------------------]  61%
  7827/12870 [====================================================>----------------------------------]  61%
  7828/12870 [====================================================>----------------------------------]  61%
  7829/12870 [====================================================>----------------------------------]  61%
  7830/12870 [====================================================>----------------------------------]  61%
  7831/12870 [====================================================>----------------------------------]  61%
  7832/12870 [====================================================>----------------------------------]  61%
  7833/12870 [====================================================>----------------------------------]  61%
  7834/12870 [====================================================>----------------------------------]  61%
  7835/12870 [====================================================>----------------------------------]  61%
  7836/12870 [====================================================>----------------------------------]  61%
  7837/12870 [====================================================>----------------------------------]  61%
  7838/12870 [====================================================>----------------------------------]  61%
  7839/12870 [====================================================>----------------------------------]  61%
  7840/12870 [====================================================>----------------------------------]  61%
  7841/12870 [====================================================>----------------------------------]  61%
  7842/12870 [====================================================>----------------------------------]  61%
  7843/12870 [====================================================>----------------------------------]  61%
  7844/12870 [====================================================>----------------------------------]  61%
  7845/12870 [====================================================>----------------------------------]  61%
  7846/12870 [====================================================>----------------------------------]  61%
  7847/12870 [====================================================>----------------------------------]  61%
  7848/12870 [====================================================>----------------------------------]  61%
  7849/12870 [====================================================>----------------------------------]  61%
  7850/12870 [====================================================>----------------------------------]  61%
  7851/12870 [====================================================>----------------------------------]  61%
  7852/12870 [====================================================>----------------------------------]  61%
  7853/12870 [====================================================>----------------------------------]  61%
  7854/12870 [====================================================>----------------------------------]  61%
  7855/12870 [====================================================>----------------------------------]  61%
  7856/12870 [====================================================>----------------------------------]  61%
  7857/12870 [====================================================>----------------------------------]  61%
  7858/12870 [====================================================>----------------------------------]  61%
  7859/12870 [====================================================>----------------------------------]  61%
  7860/12870 [====================================================>----------------------------------]  61%
  7861/12870 [====================================================>----------------------------------]  61%
  7862/12870 [====================================================>----------------------------------]  61%
  7863/12870 [====================================================>----------------------------------]  61%
  7864/12870 [====================================================>----------------------------------]  61%
  7865/12870 [====================================================>----------------------------------]  61%
  7866/12870 [====================================================>----------------------------------]  61%
  7867/12870 [====================================================>----------------------------------]  61%
  7868/12870 [====================================================>----------------------------------]  61%
  7869/12870 [====================================================>----------------------------------]  61%
  7870/12870 [====================================================>----------------------------------]  61%
  7871/12870 [====================================================>----------------------------------]  61%
  7872/12870 [====================================================>----------------------------------]  61%
  7873/12870 [====================================================>----------------------------------]  61%
  7874/12870 [====================================================>----------------------------------]  61%
  7875/12870 [====================================================>----------------------------------]  61%
  7876/12870 [====================================================>----------------------------------]  61%
  7877/12870 [====================================================>----------------------------------]  61%
  7878/12870 [====================================================>----------------------------------]  61%
  7879/12870 [====================================================>----------------------------------]  61%
  7880/12870 [====================================================>----------------------------------]  61%
  7881/12870 [====================================================>----------------------------------]  61%
  7882/12870 [====================================================>----------------------------------]  61%
  7883/12870 [====================================================>----------------------------------]  61%
  7884/12870 [====================================================>----------------------------------]  61%
  7885/12870 [====================================================>----------------------------------]  61%
  7886/12870 [====================================================>----------------------------------]  61%
  7887/12870 [====================================================>----------------------------------]  61%
  7888/12870 [====================================================>----------------------------------]  61%
  7889/12870 [====================================================>----------------------------------]  61%
  7890/12870 [====================================================>----------------------------------]  61%
  7891/12870 [====================================================>----------------------------------]  61%
  7892/12870 [====================================================>----------------------------------]  61%
  7893/12870 [====================================================>----------------------------------]  61%
  7894/12870 [====================================================>----------------------------------]  61%
  7895/12870 [====================================================>----------------------------------]  61%
  7896/12870 [====================================================>----------------------------------]  61%
  7897/12870 [====================================================>----------------------------------]  61%
  7898/12870 [====================================================>----------------------------------]  61%
  7899/12870 [====================================================>----------------------------------]  61%
  7900/12870 [====================================================>----------------------------------]  61%
  7901/12870 [====================================================>----------------------------------]  61%
  7902/12870 [====================================================>----------------------------------]  61%
  7903/12870 [====================================================>----------------------------------]  61%
  7904/12870 [====================================================>----------------------------------]  61%
  7905/12870 [====================================================>----------------------------------]  61%
  7906/12870 [====================================================>----------------------------------]  61%
  7907/12870 [====================================================>----------------------------------]  61%
  7908/12870 [====================================================>----------------------------------]  61%
  7909/12870 [====================================================>----------------------------------]  61%
  7910/12870 [====================================================>----------------------------------]  61%
  7911/12870 [====================================================>----------------------------------]  61%
  7912/12870 [====================================================>----------------------------------]  61%
  7913/12870 [====================================================>----------------------------------]  61%
  7914/12870 [====================================================>----------------------------------]  61%
  7915/12870 [=====================================================>---------------------------------]  61%
  7916/12870 [=====================================================>---------------------------------]  62%
  7917/12870 [=====================================================>---------------------------------]  62%
  7918/12870 [=====================================================>---------------------------------]  62%
  7919/12870 [=====================================================>---------------------------------]  62%
  7920/12870 [=====================================================>---------------------------------]  62%
  7921/12870 [=====================================================>---------------------------------]  62%
  7922/12870 [=====================================================>---------------------------------]  62%
  7923/12870 [=====================================================>---------------------------------]  62%
  7924/12870 [=====================================================>---------------------------------]  62%
  7925/12870 [=====================================================>---------------------------------]  62%
  7926/12870 [=====================================================>---------------------------------]  62%
  7927/12870 [=====================================================>---------------------------------]  62%
  7928/12870 [=====================================================>---------------------------------]  62%
  7929/12870 [=====================================================>---------------------------------]  62%
  7930/12870 [=====================================================>---------------------------------]  62%
  7931/12870 [=====================================================>---------------------------------]  62%
  7932/12870 [=====================================================>---------------------------------]  62%
  7933/12870 [=====================================================>---------------------------------]  62%
  7934/12870 [=====================================================>---------------------------------]  62%
  7935/12870 [=====================================================>---------------------------------]  62%
  7936/12870 [=====================================================>---------------------------------]  62%
  7937/12870 [=====================================================>---------------------------------]  62%
  7938/12870 [=====================================================>---------------------------------]  62%
  7939/12870 [=====================================================>---------------------------------]  62%
  7940/12870 [=====================================================>---------------------------------]  62%
  7941/12870 [=====================================================>---------------------------------]  62%
  7942/12870 [=====================================================>---------------------------------]  62%
  7943/12870 [=====================================================>---------------------------------]  62%
  7944/12870 [=====================================================>---------------------------------]  62%
  7945/12870 [=====================================================>---------------------------------]  62%
  7946/12870 [=====================================================>---------------------------------]  62%
  7947/12870 [=====================================================>---------------------------------]  62%
  7948/12870 [=====================================================>---------------------------------]  62%
  7949/12870 [=====================================================>---------------------------------]  62%
  7950/12870 [=====================================================>---------------------------------]  62%
  7951/12870 [=====================================================>---------------------------------]  62%
  7952/12870 [=====================================================>---------------------------------]  62%
  7953/12870 [=====================================================>---------------------------------]  62%
  7954/12870 [=====================================================>---------------------------------]  62%
  7955/12870 [=====================================================>---------------------------------]  62%
  7956/12870 [=====================================================>---------------------------------]  62%
  7957/12870 [=====================================================>---------------------------------]  62%
  7958/12870 [=====================================================>---------------------------------]  62%
  7959/12870 [=====================================================>---------------------------------]  62%
  7960/12870 [=====================================================>---------------------------------]  62%
  7961/12870 [=====================================================>---------------------------------]  62%
  7962/12870 [=====================================================>---------------------------------]  62%
  7963/12870 [=====================================================>---------------------------------]  62%
  7964/12870 [=====================================================>---------------------------------]  62%
  7965/12870 [=====================================================>---------------------------------]  62%
  7966/12870 [=====================================================>---------------------------------]  62%
  7967/12870 [=====================================================>---------------------------------]  62%
  7968/12870 [=====================================================>---------------------------------]  62%
  7969/12870 [=====================================================>---------------------------------]  62%
  7970/12870 [=====================================================>---------------------------------]  62%
  7971/12870 [=====================================================>---------------------------------]  62%
  7972/12870 [=====================================================>---------------------------------]  62%
  7973/12870 [=====================================================>---------------------------------]  62%
  7974/12870 [=====================================================>---------------------------------]  62%
  7975/12870 [=====================================================>---------------------------------]  62%
  7976/12870 [=====================================================>---------------------------------]  62%
  7977/12870 [=====================================================>---------------------------------]  62%
  7978/12870 [=====================================================>---------------------------------]  62%
  7979/12870 [=====================================================>---------------------------------]  62%
  7980/12870 [=====================================================>---------------------------------]  62%
  7981/12870 [=====================================================>---------------------------------]  62%
  7982/12870 [=====================================================>---------------------------------]  62%
  7983/12870 [=====================================================>---------------------------------]  62%
  7984/12870 [=====================================================>---------------------------------]  62%
  7985/12870 [=====================================================>---------------------------------]  62%
  7986/12870 [=====================================================>---------------------------------]  62%
  7987/12870 [=====================================================>---------------------------------]  62%
  7988/12870 [=====================================================>---------------------------------]  62%
  7989/12870 [=====================================================>---------------------------------]  62%
  7990/12870 [=====================================================>---------------------------------]  62%
  7991/12870 [=====================================================>---------------------------------]  62%
  7992/12870 [=====================================================>---------------------------------]  62%
  7993/12870 [=====================================================>---------------------------------]  62%
  7994/12870 [=====================================================>---------------------------------]  62%
  7995/12870 [=====================================================>---------------------------------]  62%
  7996/12870 [=====================================================>---------------------------------]  62%
  7997/12870 [=====================================================>---------------------------------]  62%
  7998/12870 [=====================================================>---------------------------------]  62%
  7999/12870 [=====================================================>---------------------------------]  62%
  8000/12870 [=====================================================>---------------------------------]  62%
  8001/12870 [=====================================================>---------------------------------]  62%
  8002/12870 [=====================================================>---------------------------------]  62%
  8003/12870 [=====================================================>---------------------------------]  62%
  8004/12870 [=====================================================>---------------------------------]  62%
  8005/12870 [=====================================================>---------------------------------]  62%
  8006/12870 [=====================================================>---------------------------------]  62%
  8007/12870 [=====================================================>---------------------------------]  62%
  8008/12870 [=====================================================>---------------------------------]  62%
  8009/12870 [=====================================================>---------------------------------]  62%
  8010/12870 [=====================================================>---------------------------------]  62%
  8011/12870 [=====================================================>---------------------------------]  62%
  8012/12870 [=====================================================>---------------------------------]  62%
  8013/12870 [=====================================================>---------------------------------]  62%
  8014/12870 [=====================================================>---------------------------------]  62%
  8015/12870 [=====================================================>---------------------------------]  62%
  8016/12870 [=====================================================>---------------------------------]  62%
  8017/12870 [=====================================================>---------------------------------]  62%
  8018/12870 [=====================================================>---------------------------------]  62%
  8019/12870 [=====================================================>---------------------------------]  62%
  8020/12870 [=====================================================>---------------------------------]  62%
  8021/12870 [=====================================================>---------------------------------]  62%
  8022/12870 [=====================================================>---------------------------------]  62%
  8023/12870 [=====================================================>---------------------------------]  62%
  8024/12870 [=====================================================>---------------------------------]  62%
  8025/12870 [=====================================================>---------------------------------]  62%
  8026/12870 [=====================================================>---------------------------------]  62%
  8027/12870 [=====================================================>---------------------------------]  62%
  8028/12870 [=====================================================>---------------------------------]  62%
  8029/12870 [=====================================================>---------------------------------]  62%
  8030/12870 [=====================================================>---------------------------------]  62%
  8031/12870 [=====================================================>---------------------------------]  62%
  8032/12870 [=====================================================>---------------------------------]  62%
  8033/12870 [=====================================================>---------------------------------]  62%
  8034/12870 [=====================================================>---------------------------------]  62%
  8035/12870 [=====================================================>---------------------------------]  62%
  8036/12870 [=====================================================>---------------------------------]  62%
  8037/12870 [=====================================================>---------------------------------]  62%
  8038/12870 [=====================================================>---------------------------------]  62%
  8039/12870 [=====================================================>---------------------------------]  62%
  8040/12870 [=====================================================>---------------------------------]  62%
  8041/12870 [=====================================================>---------------------------------]  62%
  8042/12870 [=====================================================>---------------------------------]  62%
  8043/12870 [=====================================================>---------------------------------]  62%
  8044/12870 [=====================================================>---------------------------------]  63%
  8045/12870 [=====================================================>---------------------------------]  63%
  8046/12870 [=====================================================>---------------------------------]  63%
  8047/12870 [=====================================================>---------------------------------]  63%
  8048/12870 [=====================================================>---------------------------------]  63%
  8049/12870 [=====================================================>---------------------------------]  63%
  8050/12870 [=====================================================>---------------------------------]  63%
  8051/12870 [=====================================================>---------------------------------]  63%
  8052/12870 [=====================================================>---------------------------------]  63%
  8053/12870 [=====================================================>---------------------------------]  63%
  8054/12870 [=====================================================>---------------------------------]  63%
  8055/12870 [=====================================================>---------------------------------]  63%
  8056/12870 [=====================================================>---------------------------------]  63%
  8057/12870 [=====================================================>---------------------------------]  63%
  8058/12870 [=====================================================>---------------------------------]  63%
  8059/12870 [=====================================================>---------------------------------]  63%
  8060/12870 [=====================================================>---------------------------------]  63%
  8061/12870 [=====================================================>---------------------------------]  63%
  8062/12870 [=====================================================>---------------------------------]  63%
  8063/12870 [======================================================>--------------------------------]  63%
  8064/12870 [======================================================>--------------------------------]  63%
  8065/12870 [======================================================>--------------------------------]  63%
  8066/12870 [======================================================>--------------------------------]  63%
  8067/12870 [======================================================>--------------------------------]  63%
  8068/12870 [======================================================>--------------------------------]  63%
  8069/12870 [======================================================>--------------------------------]  63%
  8070/12870 [======================================================>--------------------------------]  63%
  8071/12870 [======================================================>--------------------------------]  63%
  8072/12870 [======================================================>--------------------------------]  63%
  8073/12870 [======================================================>--------------------------------]  63%
  8074/12870 [======================================================>--------------------------------]  63%
  8075/12870 [======================================================>--------------------------------]  63%
  8076/12870 [======================================================>--------------------------------]  63%
  8077/12870 [======================================================>--------------------------------]  63%
  8078/12870 [======================================================>--------------------------------]  63%
  8079/12870 [======================================================>--------------------------------]  63%
  8080/12870 [======================================================>--------------------------------]  63%
  8081/12870 [======================================================>--------------------------------]  63%
  8082/12870 [======================================================>--------------------------------]  63%
  8083/12870 [======================================================>--------------------------------]  63%
  8084/12870 [======================================================>--------------------------------]  63%
  8085/12870 [======================================================>--------------------------------]  63%
  8086/12870 [======================================================>--------------------------------]  63%
  8087/12870 [======================================================>--------------------------------]  63%
  8088/12870 [======================================================>--------------------------------]  63%
  8089/12870 [======================================================>--------------------------------]  63%
  8090/12870 [======================================================>--------------------------------]  63%
  8091/12870 [======================================================>--------------------------------]  63%
  8092/12870 [======================================================>--------------------------------]  63%
  8093/12870 [======================================================>--------------------------------]  63%
  8094/12870 [======================================================>--------------------------------]  63%
  8095/12870 [======================================================>--------------------------------]  63%
  8096/12870 [======================================================>--------------------------------]  63%
  8097/12870 [======================================================>--------------------------------]  63%
  8098/12870 [======================================================>--------------------------------]  63%
  8099/12870 [======================================================>--------------------------------]  63%
  8100/12870 [======================================================>--------------------------------]  63%
  8101/12870 [======================================================>--------------------------------]  63%
  8102/12870 [======================================================>--------------------------------]  63%
  8103/12870 [======================================================>--------------------------------]  63%
  8104/12870 [======================================================>--------------------------------]  63%
  8105/12870 [======================================================>--------------------------------]  63%
  8106/12870 [======================================================>--------------------------------]  63%
  8107/12870 [======================================================>--------------------------------]  63%
  8108/12870 [======================================================>--------------------------------]  63%
  8109/12870 [======================================================>--------------------------------]  63%
  8110/12870 [======================================================>--------------------------------]  63%
  8111/12870 [======================================================>--------------------------------]  63%
  8112/12870 [======================================================>--------------------------------]  63%
  8113/12870 [======================================================>--------------------------------]  63%
  8114/12870 [======================================================>--------------------------------]  63%
  8115/12870 [======================================================>--------------------------------]  63%
  8116/12870 [======================================================>--------------------------------]  63%
  8117/12870 [======================================================>--------------------------------]  63%
  8118/12870 [======================================================>--------------------------------]  63%
  8119/12870 [======================================================>--------------------------------]  63%
  8120/12870 [======================================================>--------------------------------]  63%
  8121/12870 [======================================================>--------------------------------]  63%
  8122/12870 [======================================================>--------------------------------]  63%
  8123/12870 [======================================================>--------------------------------]  63%
  8124/12870 [======================================================>--------------------------------]  63%
  8125/12870 [======================================================>--------------------------------]  63%
  8126/12870 [======================================================>--------------------------------]  63%
  8127/12870 [======================================================>--------------------------------]  63%
  8128/12870 [======================================================>--------------------------------]  63%
  8129/12870 [======================================================>--------------------------------]  63%
  8130/12870 [======================================================>--------------------------------]  63%
  8131/12870 [======================================================>--------------------------------]  63%
  8132/12870 [======================================================>--------------------------------]  63%
  8133/12870 [======================================================>--------------------------------]  63%
  8134/12870 [======================================================>--------------------------------]  63%
  8135/12870 [======================================================>--------------------------------]  63%
  8136/12870 [======================================================>--------------------------------]  63%
  8137/12870 [======================================================>--------------------------------]  63%
  8138/12870 [======================================================>--------------------------------]  63%
  8139/12870 [======================================================>--------------------------------]  63%
  8140/12870 [======================================================>--------------------------------]  63%
  8141/12870 [======================================================>--------------------------------]  63%
  8142/12870 [======================================================>--------------------------------]  63%
  8143/12870 [======================================================>--------------------------------]  63%
  8144/12870 [======================================================>--------------------------------]  63%
  8145/12870 [======================================================>--------------------------------]  63%
  8146/12870 [======================================================>--------------------------------]  63%
  8147/12870 [======================================================>--------------------------------]  63%
  8148/12870 [======================================================>--------------------------------]  63%
  8149/12870 [======================================================>--------------------------------]  63%
  8150/12870 [======================================================>--------------------------------]  63%
  8151/12870 [======================================================>--------------------------------]  63%
  8152/12870 [======================================================>--------------------------------]  63%
  8153/12870 [======================================================>--------------------------------]  63%
  8154/12870 [======================================================>--------------------------------]  63%
  8155/12870 [======================================================>--------------------------------]  63%
  8156/12870 [======================================================>--------------------------------]  63%
  8157/12870 [======================================================>--------------------------------]  63%
  8158/12870 [======================================================>--------------------------------]  63%
  8159/12870 [======================================================>--------------------------------]  63%
  8160/12870 [======================================================>--------------------------------]  63%
  8161/12870 [======================================================>--------------------------------]  63%
  8162/12870 [======================================================>--------------------------------]  63%
  8163/12870 [======================================================>--------------------------------]  63%
  8164/12870 [======================================================>--------------------------------]  63%
  8165/12870 [======================================================>--------------------------------]  63%
  8166/12870 [======================================================>--------------------------------]  63%
  8167/12870 [======================================================>--------------------------------]  63%
  8168/12870 [======================================================>--------------------------------]  63%
  8169/12870 [======================================================>--------------------------------]  63%
  8170/12870 [======================================================>--------------------------------]  63%
  8171/12870 [======================================================>--------------------------------]  63%
  8172/12870 [======================================================>--------------------------------]  63%
  8173/12870 [======================================================>--------------------------------]  64%
  8174/12870 [======================================================>--------------------------------]  64%
  8175/12870 [======================================================>--------------------------------]  64%
  8176/12870 [======================================================>--------------------------------]  64%
  8177/12870 [======================================================>--------------------------------]  64%
  8178/12870 [======================================================>--------------------------------]  64%
  8179/12870 [======================================================>--------------------------------]  64%
  8180/12870 [======================================================>--------------------------------]  64%
  8181/12870 [======================================================>--------------------------------]  64%
  8182/12870 [======================================================>--------------------------------]  64%
  8183/12870 [======================================================>--------------------------------]  64%
  8184/12870 [======================================================>--------------------------------]  64%
  8185/12870 [======================================================>--------------------------------]  64%
  8186/12870 [======================================================>--------------------------------]  64%
  8187/12870 [======================================================>--------------------------------]  64%
  8188/12870 [======================================================>--------------------------------]  64%
  8189/12870 [======================================================>--------------------------------]  64%
  8190/12870 [======================================================>--------------------------------]  64%
  8191/12870 [======================================================>--------------------------------]  64%
  8192/12870 [======================================================>--------------------------------]  64%
  8193/12870 [======================================================>--------------------------------]  64%
  8194/12870 [======================================================>--------------------------------]  64%
  8195/12870 [======================================================>--------------------------------]  64%
  8196/12870 [======================================================>--------------------------------]  64%
  8197/12870 [======================================================>--------------------------------]  64%
  8198/12870 [======================================================>--------------------------------]  64%
  8199/12870 [======================================================>--------------------------------]  64%
  8200/12870 [======================================================>--------------------------------]  64%
  8201/12870 [======================================================>--------------------------------]  64%
  8202/12870 [======================================================>--------------------------------]  64%
  8203/12870 [======================================================>--------------------------------]  64%
  8204/12870 [======================================================>--------------------------------]  64%
  8205/12870 [======================================================>--------------------------------]  64%
  8206/12870 [======================================================>--------------------------------]  64%
  8207/12870 [======================================================>--------------------------------]  64%
  8208/12870 [======================================================>--------------------------------]  64%
  8209/12870 [======================================================>--------------------------------]  64%
  8210/12870 [======================================================>--------------------------------]  64%
  8211/12870 [=======================================================>-------------------------------]  64%
  8212/12870 [=======================================================>-------------------------------]  64%
  8213/12870 [=======================================================>-------------------------------]  64%
  8214/12870 [=======================================================>-------------------------------]  64%
  8215/12870 [=======================================================>-------------------------------]  64%
  8216/12870 [=======================================================>-------------------------------]  64%
  8217/12870 [=======================================================>-------------------------------]  64%
  8218/12870 [=======================================================>-------------------------------]  64%
  8219/12870 [=======================================================>-------------------------------]  64%
  8220/12870 [=======================================================>-------------------------------]  64%
  8221/12870 [=======================================================>-------------------------------]  64%
  8222/12870 [=======================================================>-------------------------------]  64%
  8223/12870 [=======================================================>-------------------------------]  64%
  8224/12870 [=======================================================>-------------------------------]  64%
  8225/12870 [=======================================================>-------------------------------]  64%
  8226/12870 [=======================================================>-------------------------------]  64%
  8227/12870 [=======================================================>-------------------------------]  64%
  8228/12870 [=======================================================>-------------------------------]  64%
  8229/12870 [=======================================================>-------------------------------]  64%
  8230/12870 [=======================================================>-------------------------------]  64%
  8231/12870 [=======================================================>-------------------------------]  64%
  8232/12870 [=======================================================>-------------------------------]  64%
  8233/12870 [=======================================================>-------------------------------]  64%
  8234/12870 [=======================================================>-------------------------------]  64%
  8235/12870 [=======================================================>-------------------------------]  64%
  8236/12870 [=======================================================>-------------------------------]  64%
  8237/12870 [=======================================================>-------------------------------]  64%
  8238/12870 [=======================================================>-------------------------------]  64%
  8239/12870 [=======================================================>-------------------------------]  64%
  8240/12870 [=======================================================>-------------------------------]  64%
  8241/12870 [=======================================================>-------------------------------]  64%
  8242/12870 [=======================================================>-------------------------------]  64%
  8243/12870 [=======================================================>-------------------------------]  64%
  8244/12870 [=======================================================>-------------------------------]  64%
  8245/12870 [=======================================================>-------------------------------]  64%
  8246/12870 [=======================================================>-------------------------------]  64%
  8247/12870 [=======================================================>-------------------------------]  64%
  8248/12870 [=======================================================>-------------------------------]  64%
  8249/12870 [=======================================================>-------------------------------]  64%
  8250/12870 [=======================================================>-------------------------------]  64%
  8251/12870 [=======================================================>-------------------------------]  64%
  8252/12870 [=======================================================>-------------------------------]  64%
  8253/12870 [=======================================================>-------------------------------]  64%
  8254/12870 [=======================================================>-------------------------------]  64%
  8255/12870 [=======================================================>-------------------------------]  64%
  8256/12870 [=======================================================>-------------------------------]  64%
  8257/12870 [=======================================================>-------------------------------]  64%
  8258/12870 [=======================================================>-------------------------------]  64%
  8259/12870 [=======================================================>-------------------------------]  64%
  8260/12870 [=======================================================>-------------------------------]  64%
  8261/12870 [=======================================================>-------------------------------]  64%
  8262/12870 [=======================================================>-------------------------------]  64%
  8263/12870 [=======================================================>-------------------------------]  64%
  8264/12870 [=======================================================>-------------------------------]  64%
  8265/12870 [=======================================================>-------------------------------]  64%
  8266/12870 [=======================================================>-------------------------------]  64%
  8267/12870 [=======================================================>-------------------------------]  64%
  8268/12870 [=======================================================>-------------------------------]  64%
  8269/12870 [=======================================================>-------------------------------]  64%
  8270/12870 [=======================================================>-------------------------------]  64%
  8271/12870 [=======================================================>-------------------------------]  64%
  8272/12870 [=======================================================>-------------------------------]  64%
  8273/12870 [=======================================================>-------------------------------]  64%
  8274/12870 [=======================================================>-------------------------------]  64%
  8275/12870 [=======================================================>-------------------------------]  64%
  8276/12870 [=======================================================>-------------------------------]  64%
  8277/12870 [=======================================================>-------------------------------]  64%
  8278/12870 [=======================================================>-------------------------------]  64%
  8279/12870 [=======================================================>-------------------------------]  64%
  8280/12870 [=======================================================>-------------------------------]  64%
  8281/12870 [=======================================================>-------------------------------]  64%
  8282/12870 [=======================================================>-------------------------------]  64%
  8283/12870 [=======================================================>-------------------------------]  64%
  8284/12870 [=======================================================>-------------------------------]  64%
  8285/12870 [=======================================================>-------------------------------]  64%
  8286/12870 [=======================================================>-------------------------------]  64%
  8287/12870 [=======================================================>-------------------------------]  64%
  8288/12870 [=======================================================>-------------------------------]  64%
  8289/12870 [=======================================================>-------------------------------]  64%
  8290/12870 [=======================================================>-------------------------------]  64%
  8291/12870 [=======================================================>-------------------------------]  64%
  8292/12870 [=======================================================>-------------------------------]  64%
  8293/12870 [=======================================================>-------------------------------]  64%
  8294/12870 [=======================================================>-------------------------------]  64%
  8295/12870 [=======================================================>-------------------------------]  64%
  8296/12870 [=======================================================>-------------------------------]  64%
  8297/12870 [=======================================================>-------------------------------]  64%
  8298/12870 [=======================================================>-------------------------------]  64%
  8299/12870 [=======================================================>-------------------------------]  64%
  8300/12870 [=======================================================>-------------------------------]  64%
  8301/12870 [=======================================================>-------------------------------]  64%
  8302/12870 [=======================================================>-------------------------------]  65%
  8303/12870 [=======================================================>-------------------------------]  65%
  8304/12870 [=======================================================>-------------------------------]  65%
  8305/12870 [=======================================================>-------------------------------]  65%
  8306/12870 [=======================================================>-------------------------------]  65%
  8307/12870 [=======================================================>-------------------------------]  65%
  8308/12870 [=======================================================>-------------------------------]  65%
  8309/12870 [=======================================================>-------------------------------]  65%
  8310/12870 [=======================================================>-------------------------------]  65%
  8311/12870 [=======================================================>-------------------------------]  65%
  8312/12870 [=======================================================>-------------------------------]  65%
  8313/12870 [=======================================================>-------------------------------]  65%
  8314/12870 [=======================================================>-------------------------------]  65%
  8315/12870 [=======================================================>-------------------------------]  65%
  8316/12870 [=======================================================>-------------------------------]  65%
  8317/12870 [=======================================================>-------------------------------]  65%
  8318/12870 [=======================================================>-------------------------------]  65%
  8319/12870 [=======================================================>-------------------------------]  65%
  8320/12870 [=======================================================>-------------------------------]  65%
  8321/12870 [=======================================================>-------------------------------]  65%
  8322/12870 [=======================================================>-------------------------------]  65%
  8323/12870 [=======================================================>-------------------------------]  65%
  8324/12870 [=======================================================>-------------------------------]  65%
  8325/12870 [=======================================================>-------------------------------]  65%
  8326/12870 [=======================================================>-------------------------------]  65%
  8327/12870 [=======================================================>-------------------------------]  65%
  8328/12870 [=======================================================>-------------------------------]  65%
  8329/12870 [=======================================================>-------------------------------]  65%
  8330/12870 [=======================================================>-------------------------------]  65%
  8331/12870 [=======================================================>-------------------------------]  65%
  8332/12870 [=======================================================>-------------------------------]  65%
  8333/12870 [=======================================================>-------------------------------]  65%
  8334/12870 [=======================================================>-------------------------------]  65%
  8335/12870 [=======================================================>-------------------------------]  65%
  8336/12870 [=======================================================>-------------------------------]  65%
  8337/12870 [=======================================================>-------------------------------]  65%
  8338/12870 [=======================================================>-------------------------------]  65%
  8339/12870 [=======================================================>-------------------------------]  65%
  8340/12870 [=======================================================>-------------------------------]  65%
  8341/12870 [=======================================================>-------------------------------]  65%
  8342/12870 [=======================================================>-------------------------------]  65%
  8343/12870 [=======================================================>-------------------------------]  65%
  8344/12870 [=======================================================>-------------------------------]  65%
  8345/12870 [=======================================================>-------------------------------]  65%
  8346/12870 [=======================================================>-------------------------------]  65%
  8347/12870 [=======================================================>-------------------------------]  65%
  8348/12870 [=======================================================>-------------------------------]  65%
  8349/12870 [=======================================================>-------------------------------]  65%
  8350/12870 [=======================================================>-------------------------------]  65%
  8351/12870 [=======================================================>-------------------------------]  65%
  8352/12870 [=======================================================>-------------------------------]  65%
  8353/12870 [=======================================================>-------------------------------]  65%
  8354/12870 [=======================================================>-------------------------------]  65%
  8355/12870 [=======================================================>-------------------------------]  65%
  8356/12870 [=======================================================>-------------------------------]  65%
  8357/12870 [=======================================================>-------------------------------]  65%
  8358/12870 [=======================================================>-------------------------------]  65%
  8359/12870 [========================================================>------------------------------]  65%
  8360/12870 [========================================================>------------------------------]  65%
  8361/12870 [========================================================>------------------------------]  65%
  8362/12870 [========================================================>------------------------------]  65%
  8363/12870 [========================================================>------------------------------]  65%
  8364/12870 [========================================================>------------------------------]  65%
  8365/12870 [========================================================>------------------------------]  65%
  8366/12870 [========================================================>------------------------------]  65%
  8367/12870 [========================================================>------------------------------]  65%
  8368/12870 [========================================================>------------------------------]  65%
  8369/12870 [========================================================>------------------------------]  65%
  8370/12870 [========================================================>------------------------------]  65%
  8371/12870 [========================================================>------------------------------]  65%
  8372/12870 [========================================================>------------------------------]  65%
  8373/12870 [========================================================>------------------------------]  65%
  8374/12870 [========================================================>------------------------------]  65%
  8375/12870 [========================================================>------------------------------]  65%
  8376/12870 [========================================================>------------------------------]  65%
  8377/12870 [========================================================>------------------------------]  65%
  8378/12870 [========================================================>------------------------------]  65%
  8379/12870 [========================================================>------------------------------]  65%
  8380/12870 [========================================================>------------------------------]  65%
  8381/12870 [========================================================>------------------------------]  65%
  8382/12870 [========================================================>------------------------------]  65%
  8383/12870 [========================================================>------------------------------]  65%
  8384/12870 [========================================================>------------------------------]  65%
  8385/12870 [========================================================>------------------------------]  65%
  8386/12870 [========================================================>------------------------------]  65%
  8387/12870 [========================================================>------------------------------]  65%
  8388/12870 [========================================================>------------------------------]  65%
  8389/12870 [========================================================>------------------------------]  65%
  8390/12870 [========================================================>------------------------------]  65%
  8391/12870 [========================================================>------------------------------]  65%
  8392/12870 [========================================================>------------------------------]  65%
  8393/12870 [========================================================>------------------------------]  65%
  8394/12870 [========================================================>------------------------------]  65%
  8395/12870 [========================================================>------------------------------]  65%
  8396/12870 [========================================================>------------------------------]  65%
  8397/12870 [========================================================>------------------------------]  65%
  8398/12870 [========================================================>------------------------------]  65%
  8399/12870 [========================================================>------------------------------]  65%
  8400/12870 [========================================================>------------------------------]  65%
  8401/12870 [========================================================>------------------------------]  65%
  8402/12870 [========================================================>------------------------------]  65%
  8403/12870 [========================================================>------------------------------]  65%
  8404/12870 [========================================================>------------------------------]  65%
  8405/12870 [========================================================>------------------------------]  65%
  8406/12870 [========================================================>------------------------------]  65%
  8407/12870 [========================================================>------------------------------]  65%
  8408/12870 [========================================================>------------------------------]  65%
  8409/12870 [========================================================>------------------------------]  65%
  8410/12870 [========================================================>------------------------------]  65%
  8411/12870 [========================================================>------------------------------]  65%
  8412/12870 [========================================================>------------------------------]  65%
  8413/12870 [========================================================>------------------------------]  65%
  8414/12870 [========================================================>------------------------------]  65%
  8415/12870 [========================================================>------------------------------]  65%
  8416/12870 [========================================================>------------------------------]  65%
  8417/12870 [========================================================>------------------------------]  65%
  8418/12870 [========================================================>------------------------------]  65%
  8419/12870 [========================================================>------------------------------]  65%
  8420/12870 [========================================================>------------------------------]  65%
  8421/12870 [========================================================>------------------------------]  65%
  8422/12870 [========================================================>------------------------------]  65%
  8423/12870 [========================================================>------------------------------]  65%
  8424/12870 [========================================================>------------------------------]  65%
  8425/12870 [========================================================>------------------------------]  65%
  8426/12870 [========================================================>------------------------------]  65%
  8427/12870 [========================================================>------------------------------]  65%
  8428/12870 [========================================================>------------------------------]  65%
  8429/12870 [========================================================>------------------------------]  65%
  8430/12870 [========================================================>------------------------------]  66%
  8431/12870 [========================================================>------------------------------]  66%
  8432/12870 [========================================================>------------------------------]  66%
  8433/12870 [========================================================>------------------------------]  66%
  8434/12870 [========================================================>------------------------------]  66%
  8435/12870 [========================================================>------------------------------]  66%
  8436/12870 [========================================================>------------------------------]  66%
  8437/12870 [========================================================>------------------------------]  66%
  8438/12870 [========================================================>------------------------------]  66%
  8439/12870 [========================================================>------------------------------]  66%
  8440/12870 [========================================================>------------------------------]  66%
  8441/12870 [========================================================>------------------------------]  66%
  8442/12870 [========================================================>------------------------------]  66%
  8443/12870 [========================================================>------------------------------]  66%
  8444/12870 [========================================================>------------------------------]  66%
  8445/12870 [========================================================>------------------------------]  66%
  8446/12870 [========================================================>------------------------------]  66%
  8447/12870 [========================================================>------------------------------]  66%
  8448/12870 [========================================================>------------------------------]  66%
  8449/12870 [========================================================>------------------------------]  66%
  8450/12870 [========================================================>------------------------------]  66%
  8451/12870 [========================================================>------------------------------]  66%
  8452/12870 [========================================================>------------------------------]  66%
  8453/12870 [========================================================>------------------------------]  66%
  8454/12870 [========================================================>------------------------------]  66%
  8455/12870 [========================================================>------------------------------]  66%
  8456/12870 [========================================================>------------------------------]  66%
  8457/12870 [========================================================>------------------------------]  66%
  8458/12870 [========================================================>------------------------------]  66%
  8459/12870 [========================================================>------------------------------]  66%
  8460/12870 [========================================================>------------------------------]  66%
  8461/12870 [========================================================>------------------------------]  66%
  8462/12870 [========================================================>------------------------------]  66%
  8463/12870 [========================================================>------------------------------]  66%
  8464/12870 [========================================================>------------------------------]  66%
  8465/12870 [========================================================>------------------------------]  66%
  8466/12870 [========================================================>------------------------------]  66%
  8467/12870 [========================================================>------------------------------]  66%
  8468/12870 [========================================================>------------------------------]  66%
  8469/12870 [========================================================>------------------------------]  66%
  8470/12870 [========================================================>------------------------------]  66%
  8471/12870 [========================================================>------------------------------]  66%
  8472/12870 [========================================================>------------------------------]  66%
  8473/12870 [========================================================>------------------------------]  66%
  8474/12870 [========================================================>------------------------------]  66%
  8475/12870 [========================================================>------------------------------]  66%
  8476/12870 [========================================================>------------------------------]  66%
  8477/12870 [========================================================>------------------------------]  66%
  8478/12870 [========================================================>------------------------------]  66%
  8479/12870 [========================================================>------------------------------]  66%
  8480/12870 [========================================================>------------------------------]  66%
  8481/12870 [========================================================>------------------------------]  66%
  8482/12870 [========================================================>------------------------------]  66%
  8483/12870 [========================================================>------------------------------]  66%
  8484/12870 [========================================================>------------------------------]  66%
  8485/12870 [========================================================>------------------------------]  66%
  8486/12870 [========================================================>------------------------------]  66%
  8487/12870 [========================================================>------------------------------]  66%
  8488/12870 [========================================================>------------------------------]  66%
  8489/12870 [========================================================>------------------------------]  66%
  8490/12870 [========================================================>------------------------------]  66%
  8491/12870 [========================================================>------------------------------]  66%
  8492/12870 [========================================================>------------------------------]  66%
  8493/12870 [========================================================>------------------------------]  66%
  8494/12870 [========================================================>------------------------------]  66%
  8495/12870 [========================================================>------------------------------]  66%
  8496/12870 [========================================================>------------------------------]  66%
  8497/12870 [========================================================>------------------------------]  66%
  8498/12870 [========================================================>------------------------------]  66%
  8499/12870 [========================================================>------------------------------]  66%
  8500/12870 [========================================================>------------------------------]  66%
  8501/12870 [========================================================>------------------------------]  66%
  8502/12870 [========================================================>------------------------------]  66%
  8503/12870 [========================================================>------------------------------]  66%
  8504/12870 [========================================================>------------------------------]  66%
  8505/12870 [========================================================>------------------------------]  66%
  8506/12870 [========================================================>------------------------------]  66%
  8507/12870 [=========================================================>-----------------------------]  66%
  8508/12870 [=========================================================>-----------------------------]  66%
  8509/12870 [=========================================================>-----------------------------]  66%
  8510/12870 [=========================================================>-----------------------------]  66%
  8511/12870 [=========================================================>-----------------------------]  66%
  8512/12870 [=========================================================>-----------------------------]  66%
  8513/12870 [=========================================================>-----------------------------]  66%
  8514/12870 [=========================================================>-----------------------------]  66%
  8515/12870 [=========================================================>-----------------------------]  66%
  8516/12870 [=========================================================>-----------------------------]  66%
  8517/12870 [=========================================================>-----------------------------]  66%
  8518/12870 [=========================================================>-----------------------------]  66%
  8519/12870 [=========================================================>-----------------------------]  66%
  8520/12870 [=========================================================>-----------------------------]  66%
  8521/12870 [=========================================================>-----------------------------]  66%
  8522/12870 [=========================================================>-----------------------------]  66%
  8523/12870 [=========================================================>-----------------------------]  66%
  8524/12870 [=========================================================>-----------------------------]  66%
  8525/12870 [=========================================================>-----------------------------]  66%
  8526/12870 [=========================================================>-----------------------------]  66%
  8527/12870 [=========================================================>-----------------------------]  66%
  8528/12870 [=========================================================>-----------------------------]  66%
  8529/12870 [=========================================================>-----------------------------]  66%
  8530/12870 [=========================================================>-----------------------------]  66%
  8531/12870 [=========================================================>-----------------------------]  66%
  8532/12870 [=========================================================>-----------------------------]  66%
  8533/12870 [=========================================================>-----------------------------]  66%
  8534/12870 [=========================================================>-----------------------------]  66%
  8535/12870 [=========================================================>-----------------------------]  66%
  8536/12870 [=========================================================>-----------------------------]  66%
  8537/12870 [=========================================================>-----------------------------]  66%
  8538/12870 [=========================================================>-----------------------------]  66%
  8539/12870 [=========================================================>-----------------------------]  66%
  8540/12870 [=========================================================>-----------------------------]  66%
  8541/12870 [=========================================================>-----------------------------]  66%
  8542/12870 [=========================================================>-----------------------------]  66%
  8543/12870 [=========================================================>-----------------------------]  66%
  8544/12870 [=========================================================>-----------------------------]  66%
  8545/12870 [=========================================================>-----------------------------]  66%
  8546/12870 [=========================================================>-----------------------------]  66%
  8547/12870 [=========================================================>-----------------------------]  66%
  8548/12870 [=========================================================>-----------------------------]  66%
  8549/12870 [=========================================================>-----------------------------]  66%
  8550/12870 [=========================================================>-----------------------------]  66%
  8551/12870 [=========================================================>-----------------------------]  66%
  8552/12870 [=========================================================>-----------------------------]  66%
  8553/12870 [=========================================================>-----------------------------]  66%
  8554/12870 [=========================================================>-----------------------------]  66%
  8555/12870 [=========================================================>-----------------------------]  66%
  8556/12870 [=========================================================>-----------------------------]  66%
  8557/12870 [=========================================================>-----------------------------]  66%
  8558/12870 [=========================================================>-----------------------------]  66%
  8559/12870 [=========================================================>-----------------------------]  67%
  8560/12870 [=========================================================>-----------------------------]  67%
  8561/12870 [=========================================================>-----------------------------]  67%
  8562/12870 [=========================================================>-----------------------------]  67%
  8563/12870 [=========================================================>-----------------------------]  67%
  8564/12870 [=========================================================>-----------------------------]  67%
  8565/12870 [=========================================================>-----------------------------]  67%
  8566/12870 [=========================================================>-----------------------------]  67%
  8567/12870 [=========================================================>-----------------------------]  67%
  8568/12870 [=========================================================>-----------------------------]  67%
  8569/12870 [=========================================================>-----------------------------]  67%
  8570/12870 [=========================================================>-----------------------------]  67%
  8571/12870 [=========================================================>-----------------------------]  67%
  8572/12870 [=========================================================>-----------------------------]  67%
  8573/12870 [=========================================================>-----------------------------]  67%
  8574/12870 [=========================================================>-----------------------------]  67%
  8575/12870 [=========================================================>-----------------------------]  67%
  8576/12870 [=========================================================>-----------------------------]  67%
  8577/12870 [=========================================================>-----------------------------]  67%
  8578/12870 [=========================================================>-----------------------------]  67%
  8579/12870 [=========================================================>-----------------------------]  67%
  8580/12870 [=========================================================>-----------------------------]  67%
  8581/12870 [=========================================================>-----------------------------]  67%
  8582/12870 [=========================================================>-----------------------------]  67%
  8583/12870 [=========================================================>-----------------------------]  67%
  8584/12870 [=========================================================>-----------------------------]  67%
  8585/12870 [=========================================================>-----------------------------]  67%
  8586/12870 [=========================================================>-----------------------------]  67%
  8587/12870 [=========================================================>-----------------------------]  67%
  8588/12870 [=========================================================>-----------------------------]  67%
  8589/12870 [=========================================================>-----------------------------]  67%
  8590/12870 [=========================================================>-----------------------------]  67%
  8591/12870 [=========================================================>-----------------------------]  67%
  8592/12870 [=========================================================>-----------------------------]  67%
  8593/12870 [=========================================================>-----------------------------]  67%
  8594/12870 [=========================================================>-----------------------------]  67%
  8595/12870 [=========================================================>-----------------------------]  67%
  8596/12870 [=========================================================>-----------------------------]  67%
  8597/12870 [=========================================================>-----------------------------]  67%
  8598/12870 [=========================================================>-----------------------------]  67%
  8599/12870 [=========================================================>-----------------------------]  67%
  8600/12870 [=========================================================>-----------------------------]  67%
  8601/12870 [=========================================================>-----------------------------]  67%
  8602/12870 [=========================================================>-----------------------------]  67%
  8603/12870 [=========================================================>-----------------------------]  67%
  8604/12870 [=========================================================>-----------------------------]  67%
  8605/12870 [=========================================================>-----------------------------]  67%
  8606/12870 [=========================================================>-----------------------------]  67%
  8607/12870 [=========================================================>-----------------------------]  67%
  8608/12870 [=========================================================>-----------------------------]  67%
  8609/12870 [=========================================================>-----------------------------]  67%
  8610/12870 [=========================================================>-----------------------------]  67%
  8611/12870 [=========================================================>-----------------------------]  67%
  8612/12870 [=========================================================>-----------------------------]  67%
  8613/12870 [=========================================================>-----------------------------]  67%
  8614/12870 [=========================================================>-----------------------------]  67%
  8615/12870 [=========================================================>-----------------------------]  67%
  8616/12870 [=========================================================>-----------------------------]  67%
  8617/12870 [=========================================================>-----------------------------]  67%
  8618/12870 [=========================================================>-----------------------------]  67%
  8619/12870 [=========================================================>-----------------------------]  67%
  8620/12870 [=========================================================>-----------------------------]  67%
  8621/12870 [=========================================================>-----------------------------]  67%
  8622/12870 [=========================================================>-----------------------------]  67%
  8623/12870 [=========================================================>-----------------------------]  67%
  8624/12870 [=========================================================>-----------------------------]  67%
  8625/12870 [=========================================================>-----------------------------]  67%
  8626/12870 [=========================================================>-----------------------------]  67%
  8627/12870 [=========================================================>-----------------------------]  67%
  8628/12870 [=========================================================>-----------------------------]  67%
  8629/12870 [=========================================================>-----------------------------]  67%
  8630/12870 [=========================================================>-----------------------------]  67%
  8631/12870 [=========================================================>-----------------------------]  67%
  8632/12870 [=========================================================>-----------------------------]  67%
  8633/12870 [=========================================================>-----------------------------]  67%
  8634/12870 [=========================================================>-----------------------------]  67%
  8635/12870 [=========================================================>-----------------------------]  67%
  8636/12870 [=========================================================>-----------------------------]  67%
  8637/12870 [=========================================================>-----------------------------]  67%
  8638/12870 [=========================================================>-----------------------------]  67%
  8639/12870 [=========================================================>-----------------------------]  67%
  8640/12870 [=========================================================>-----------------------------]  67%
  8641/12870 [=========================================================>-----------------------------]  67%
  8642/12870 [=========================================================>-----------------------------]  67%
  8643/12870 [=========================================================>-----------------------------]  67%
  8644/12870 [=========================================================>-----------------------------]  67%
  8645/12870 [=========================================================>-----------------------------]  67%
  8646/12870 [=========================================================>-----------------------------]  67%
  8647/12870 [=========================================================>-----------------------------]  67%
  8648/12870 [=========================================================>-----------------------------]  67%
  8649/12870 [=========================================================>-----------------------------]  67%
  8650/12870 [=========================================================>-----------------------------]  67%
  8651/12870 [=========================================================>-----------------------------]  67%
  8652/12870 [=========================================================>-----------------------------]  67%
  8653/12870 [=========================================================>-----------------------------]  67%
  8654/12870 [==========================================================>----------------------------]  67%
  8655/12870 [==========================================================>----------------------------]  67%
  8656/12870 [==========================================================>----------------------------]  67%
  8657/12870 [==========================================================>----------------------------]  67%
  8658/12870 [==========================================================>----------------------------]  67%
  8659/12870 [==========================================================>----------------------------]  67%
  8660/12870 [==========================================================>----------------------------]  67%
  8661/12870 [==========================================================>----------------------------]  67%
  8662/12870 [==========================================================>----------------------------]  67%
  8663/12870 [==========================================================>----------------------------]  67%
  8664/12870 [==========================================================>----------------------------]  67%
  8665/12870 [==========================================================>----------------------------]  67%
  8666/12870 [==========================================================>----------------------------]  67%
  8667/12870 [==========================================================>----------------------------]  67%
  8668/12870 [==========================================================>----------------------------]  67%
  8669/12870 [==========================================================>----------------------------]  67%
  8670/12870 [==========================================================>----------------------------]  67%
  8671/12870 [==========================================================>----------------------------]  67%
  8672/12870 [==========================================================>----------------------------]  67%
  8673/12870 [==========================================================>----------------------------]  67%
  8674/12870 [==========================================================>----------------------------]  67%
  8675/12870 [==========================================================>----------------------------]  67%
  8676/12870 [==========================================================>----------------------------]  67%
  8677/12870 [==========================================================>----------------------------]  67%
  8678/12870 [==========================================================>----------------------------]  67%
  8679/12870 [==========================================================>----------------------------]  67%
  8680/12870 [==========================================================>----------------------------]  67%
  8681/12870 [==========================================================>----------------------------]  67%
  8682/12870 [==========================================================>----------------------------]  67%
  8683/12870 [==========================================================>----------------------------]  67%
  8684/12870 [==========================================================>----------------------------]  67%
  8685/12870 [==========================================================>----------------------------]  67%
  8686/12870 [==========================================================>----------------------------]  67%
  8687/12870 [==========================================================>----------------------------]  67%
  8688/12870 [==========================================================>----------------------------]  68%
  8689/12870 [==========================================================>----------------------------]  68%
  8690/12870 [==========================================================>----------------------------]  68%
  8691/12870 [==========================================================>----------------------------]  68%
  8692/12870 [==========================================================>----------------------------]  68%
  8693/12870 [==========================================================>----------------------------]  68%
  8694/12870 [==========================================================>----------------------------]  68%
  8695/12870 [==========================================================>----------------------------]  68%
  8696/12870 [==========================================================>----------------------------]  68%
  8697/12870 [==========================================================>----------------------------]  68%
  8698/12870 [==========================================================>----------------------------]  68%
  8699/12870 [==========================================================>----------------------------]  68%
  8700/12870 [==========================================================>----------------------------]  68%
  8701/12870 [==========================================================>----------------------------]  68%
  8702/12870 [==========================================================>----------------------------]  68%
  8703/12870 [==========================================================>----------------------------]  68%
  8704/12870 [==========================================================>----------------------------]  68%
  8705/12870 [==========================================================>----------------------------]  68%
  8706/12870 [==========================================================>----------------------------]  68%
  8707/12870 [==========================================================>----------------------------]  68%
  8708/12870 [==========================================================>----------------------------]  68%
  8709/12870 [==========================================================>----------------------------]  68%
  8710/12870 [==========================================================>----------------------------]  68%
  8711/12870 [==========================================================>----------------------------]  68%
  8712/12870 [==========================================================>----------------------------]  68%
  8713/12870 [==========================================================>----------------------------]  68%
  8714/12870 [==========================================================>----------------------------]  68%
  8715/12870 [==========================================================>----------------------------]  68%
  8716/12870 [==========================================================>----------------------------]  68%
  8717/12870 [==========================================================>----------------------------]  68%
  8718/12870 [==========================================================>----------------------------]  68%
  8719/12870 [==========================================================>----------------------------]  68%
  8720/12870 [==========================================================>----------------------------]  68%
  8721/12870 [==========================================================>----------------------------]  68%
  8722/12870 [==========================================================>----------------------------]  68%
  8723/12870 [==========================================================>----------------------------]  68%
  8724/12870 [==========================================================>----------------------------]  68%
  8725/12870 [==========================================================>----------------------------]  68%
  8726/12870 [==========================================================>----------------------------]  68%
  8727/12870 [==========================================================>----------------------------]  68%
  8728/12870 [==========================================================>----------------------------]  68%
  8729/12870 [==========================================================>----------------------------]  68%
  8730/12870 [==========================================================>----------------------------]  68%
  8731/12870 [==========================================================>----------------------------]  68%
  8732/12870 [==========================================================>----------------------------]  68%
  8733/12870 [==========================================================>----------------------------]  68%
  8734/12870 [==========================================================>----------------------------]  68%
  8735/12870 [==========================================================>----------------------------]  68%
  8736/12870 [==========================================================>----------------------------]  68%
  8737/12870 [==========================================================>----------------------------]  68%
  8738/12870 [==========================================================>----------------------------]  68%
  8739/12870 [==========================================================>----------------------------]  68%
  8740/12870 [==========================================================>----------------------------]  68%
  8741/12870 [==========================================================>----------------------------]  68%
  8742/12870 [==========================================================>----------------------------]  68%
  8743/12870 [==========================================================>----------------------------]  68%
  8744/12870 [==========================================================>----------------------------]  68%
  8745/12870 [==========================================================>----------------------------]  68%
  8746/12870 [==========================================================>----------------------------]  68%
  8747/12870 [==========================================================>----------------------------]  68%
  8748/12870 [==========================================================>----------------------------]  68%
  8749/12870 [==========================================================>----------------------------]  68%
  8750/12870 [==========================================================>----------------------------]  68%
  8751/12870 [==========================================================>----------------------------]  68%
  8752/12870 [==========================================================>----------------------------]  68%
  8753/12870 [==========================================================>----------------------------]  68%
  8754/12870 [==========================================================>----------------------------]  68%
  8755/12870 [==========================================================>----------------------------]  68%
  8756/12870 [==========================================================>----------------------------]  68%
  8757/12870 [==========================================================>----------------------------]  68%
  8758/12870 [==========================================================>----------------------------]  68%
  8759/12870 [==========================================================>----------------------------]  68%
  8760/12870 [==========================================================>----------------------------]  68%
  8761/12870 [==========================================================>----------------------------]  68%
  8762/12870 [==========================================================>----------------------------]  68%
  8763/12870 [==========================================================>----------------------------]  68%
  8764/12870 [==========================================================>----------------------------]  68%
  8765/12870 [==========================================================>----------------------------]  68%
  8766/12870 [==========================================================>----------------------------]  68%
  8767/12870 [==========================================================>----------------------------]  68%
  8768/12870 [==========================================================>----------------------------]  68%
  8769/12870 [==========================================================>----------------------------]  68%
  8770/12870 [==========================================================>----------------------------]  68%
  8771/12870 [==========================================================>----------------------------]  68%
  8772/12870 [==========================================================>----------------------------]  68%
  8773/12870 [==========================================================>----------------------------]  68%
  8774/12870 [==========================================================>----------------------------]  68%
  8775/12870 [==========================================================>----------------------------]  68%
  8776/12870 [==========================================================>----------------------------]  68%
  8777/12870 [==========================================================>----------------------------]  68%
  8778/12870 [==========================================================>----------------------------]  68%
  8779/12870 [==========================================================>----------------------------]  68%
  8780/12870 [==========================================================>----------------------------]  68%
  8781/12870 [==========================================================>----------------------------]  68%
  8782/12870 [==========================================================>----------------------------]  68%
  8783/12870 [==========================================================>----------------------------]  68%
  8784/12870 [==========================================================>----------------------------]  68%
  8785/12870 [==========================================================>----------------------------]  68%
  8786/12870 [==========================================================>----------------------------]  68%
  8787/12870 [==========================================================>----------------------------]  68%
  8788/12870 [==========================================================>----------------------------]  68%
  8789/12870 [==========================================================>----------------------------]  68%
  8790/12870 [==========================================================>----------------------------]  68%
  8791/12870 [==========================================================>----------------------------]  68%
  8792/12870 [==========================================================>----------------------------]  68%
  8793/12870 [==========================================================>----------------------------]  68%
  8794/12870 [==========================================================>----------------------------]  68%
  8795/12870 [==========================================================>----------------------------]  68%
  8796/12870 [==========================================================>----------------------------]  68%
  8797/12870 [==========================================================>----------------------------]  68%
  8798/12870 [==========================================================>----------------------------]  68%
  8799/12870 [==========================================================>----------------------------]  68%
  8800/12870 [==========================================================>----------------------------]  68%
  8801/12870 [==========================================================>----------------------------]  68%
  8802/12870 [===========================================================>---------------------------]  68%
  8803/12870 [===========================================================>---------------------------]  68%
  8804/12870 [===========================================================>---------------------------]  68%
  8805/12870 [===========================================================>---------------------------]  68%
  8806/12870 [===========================================================>---------------------------]  68%
  8807/12870 [===========================================================>---------------------------]  68%
  8808/12870 [===========================================================>---------------------------]  68%
  8809/12870 [===========================================================>---------------------------]  68%
  8810/12870 [===========================================================>---------------------------]  68%
  8811/12870 [===========================================================>---------------------------]  68%
  8812/12870 [===========================================================>---------------------------]  68%
  8813/12870 [===========================================================>---------------------------]  68%
  8814/12870 [===========================================================>---------------------------]  68%
  8815/12870 [===========================================================>---------------------------]  68%
  8816/12870 [===========================================================>---------------------------]  69%
  8817/12870 [===========================================================>---------------------------]  69%
  8818/12870 [===========================================================>---------------------------]  69%
  8819/12870 [===========================================================>---------------------------]  69%
  8820/12870 [===========================================================>---------------------------]  69%
  8821/12870 [===========================================================>---------------------------]  69%
  8822/12870 [===========================================================>---------------------------]  69%
  8823/12870 [===========================================================>---------------------------]  69%
  8824/12870 [===========================================================>---------------------------]  69%
  8825/12870 [===========================================================>---------------------------]  69%
  8826/12870 [===========================================================>---------------------------]  69%
  8827/12870 [===========================================================>---------------------------]  69%
  8828/12870 [===========================================================>---------------------------]  69%
  8829/12870 [===========================================================>---------------------------]  69%
  8830/12870 [===========================================================>---------------------------]  69%
  8831/12870 [===========================================================>---------------------------]  69%
  8832/12870 [===========================================================>---------------------------]  69%
  8833/12870 [===========================================================>---------------------------]  69%
  8834/12870 [===========================================================>---------------------------]  69%
  8835/12870 [===========================================================>---------------------------]  69%
  8836/12870 [===========================================================>---------------------------]  69%
  8837/12870 [===========================================================>---------------------------]  69%
  8838/12870 [===========================================================>---------------------------]  69%
  8839/12870 [===========================================================>---------------------------]  69%
  8840/12870 [===========================================================>---------------------------]  69%
  8841/12870 [===========================================================>---------------------------]  69%
  8842/12870 [===========================================================>---------------------------]  69%
  8843/12870 [===========================================================>---------------------------]  69%
  8844/12870 [===========================================================>---------------------------]  69%
  8845/12870 [===========================================================>---------------------------]  69%
  8846/12870 [===========================================================>---------------------------]  69%
  8847/12870 [===========================================================>---------------------------]  69%
  8848/12870 [===========================================================>---------------------------]  69%
  8849/12870 [===========================================================>---------------------------]  69%
  8850/12870 [===========================================================>---------------------------]  69%
  8851/12870 [===========================================================>---------------------------]  69%
  8852/12870 [===========================================================>---------------------------]  69%
  8853/12870 [===========================================================>---------------------------]  69%
  8854/12870 [===========================================================>---------------------------]  69%
  8855/12870 [===========================================================>---------------------------]  69%
  8856/12870 [===========================================================>---------------------------]  69%
  8857/12870 [===========================================================>---------------------------]  69%
  8858/12870 [===========================================================>---------------------------]  69%
  8859/12870 [===========================================================>---------------------------]  69%
  8860/12870 [===========================================================>---------------------------]  69%
  8861/12870 [===========================================================>---------------------------]  69%
  8862/12870 [===========================================================>---------------------------]  69%
  8863/12870 [===========================================================>---------------------------]  69%
  8864/12870 [===========================================================>---------------------------]  69%
  8865/12870 [===========================================================>---------------------------]  69%
  8866/12870 [===========================================================>---------------------------]  69%
  8867/12870 [===========================================================>---------------------------]  69%
  8868/12870 [===========================================================>---------------------------]  69%
  8869/12870 [===========================================================>---------------------------]  69%
  8870/12870 [===========================================================>---------------------------]  69%
  8871/12870 [===========================================================>---------------------------]  69%
  8872/12870 [===========================================================>---------------------------]  69%
  8873/12870 [===========================================================>---------------------------]  69%
  8874/12870 [===========================================================>---------------------------]  69%
  8875/12870 [===========================================================>---------------------------]  69%
  8876/12870 [===========================================================>---------------------------]  69%
  8877/12870 [===========================================================>---------------------------]  69%
  8878/12870 [===========================================================>---------------------------]  69%
  8879/12870 [===========================================================>---------------------------]  69%
  8880/12870 [===========================================================>---------------------------]  69%
  8881/12870 [===========================================================>---------------------------]  69%
  8882/12870 [===========================================================>---------------------------]  69%
  8883/12870 [===========================================================>---------------------------]  69%
  8884/12870 [===========================================================>---------------------------]  69%
  8885/12870 [===========================================================>---------------------------]  69%
  8886/12870 [===========================================================>---------------------------]  69%
  8887/12870 [===========================================================>---------------------------]  69%
  8888/12870 [===========================================================>---------------------------]  69%
  8889/12870 [===========================================================>---------------------------]  69%
  8890/12870 [===========================================================>---------------------------]  69%
  8891/12870 [===========================================================>---------------------------]  69%
  8892/12870 [===========================================================>---------------------------]  69%
  8893/12870 [===========================================================>---------------------------]  69%
  8894/12870 [===========================================================>---------------------------]  69%
  8895/12870 [===========================================================>---------------------------]  69%
  8896/12870 [===========================================================>---------------------------]  69%
  8897/12870 [===========================================================>---------------------------]  69%
  8898/12870 [===========================================================>---------------------------]  69%
  8899/12870 [===========================================================>---------------------------]  69%
  8900/12870 [===========================================================>---------------------------]  69%
  8901/12870 [===========================================================>---------------------------]  69%
  8902/12870 [===========================================================>---------------------------]  69%
  8903/12870 [===========================================================>---------------------------]  69%
  8904/12870 [===========================================================>---------------------------]  69%
  8905/12870 [===========================================================>---------------------------]  69%
  8906/12870 [===========================================================>---------------------------]  69%
  8907/12870 [===========================================================>---------------------------]  69%
  8908/12870 [===========================================================>---------------------------]  69%
  8909/12870 [===========================================================>---------------------------]  69%
  8910/12870 [===========================================================>---------------------------]  69%
  8911/12870 [===========================================================>---------------------------]  69%
  8912/12870 [===========================================================>---------------------------]  69%
  8913/12870 [===========================================================>---------------------------]  69%
  8914/12870 [===========================================================>---------------------------]  69%
  8915/12870 [===========================================================>---------------------------]  69%
  8916/12870 [===========================================================>---------------------------]  69%
  8917/12870 [===========================================================>---------------------------]  69%
  8918/12870 [===========================================================>---------------------------]  69%
  8919/12870 [===========================================================>---------------------------]  69%
  8920/12870 [===========================================================>---------------------------]  69%
  8921/12870 [===========================================================>---------------------------]  69%
  8922/12870 [===========================================================>---------------------------]  69%
  8923/12870 [===========================================================>---------------------------]  69%
  8924/12870 [===========================================================>---------------------------]  69%
  8925/12870 [===========================================================>---------------------------]  69%
  8926/12870 [===========================================================>---------------------------]  69%
  8927/12870 [===========================================================>---------------------------]  69%
  8928/12870 [===========================================================>---------------------------]  69%
  8929/12870 [===========================================================>---------------------------]  69%
  8930/12870 [===========================================================>---------------------------]  69%
  8931/12870 [===========================================================>---------------------------]  69%
  8932/12870 [===========================================================>---------------------------]  69%
  8933/12870 [===========================================================>---------------------------]  69%
  8934/12870 [===========================================================>---------------------------]  69%
  8935/12870 [===========================================================>---------------------------]  69%
  8936/12870 [===========================================================>---------------------------]  69%
  8937/12870 [===========================================================>---------------------------]  69%
  8938/12870 [===========================================================>---------------------------]  69%
  8939/12870 [===========================================================>---------------------------]  69%
  8940/12870 [===========================================================>---------------------------]  69%
  8941/12870 [===========================================================>---------------------------]  69%
  8942/12870 [===========================================================>---------------------------]  69%
  8943/12870 [===========================================================>---------------------------]  69%
  8944/12870 [===========================================================>---------------------------]  69%
  8945/12870 [===========================================================>---------------------------]  70%
  8946/12870 [===========================================================>---------------------------]  70%
  8947/12870 [===========================================================>---------------------------]  70%
  8948/12870 [===========================================================>---------------------------]  70%
  8949/12870 [===========================================================>---------------------------]  70%
  8950/12870 [============================================================>--------------------------]  70%
  8951/12870 [============================================================>--------------------------]  70%
  8952/12870 [============================================================>--------------------------]  70%
  8953/12870 [============================================================>--------------------------]  70%
  8954/12870 [============================================================>--------------------------]  70%
  8955/12870 [============================================================>--------------------------]  70%
  8956/12870 [============================================================>--------------------------]  70%
  8957/12870 [============================================================>--------------------------]  70%
  8958/12870 [============================================================>--------------------------]  70%
  8959/12870 [============================================================>--------------------------]  70%
  8960/12870 [============================================================>--------------------------]  70%
  8961/12870 [============================================================>--------------------------]  70%
  8962/12870 [============================================================>--------------------------]  70%
  8963/12870 [============================================================>--------------------------]  70%
  8964/12870 [============================================================>--------------------------]  70%
  8965/12870 [============================================================>--------------------------]  70%
  8966/12870 [============================================================>--------------------------]  70%
  8967/12870 [============================================================>--------------------------]  70%
  8968/12870 [============================================================>--------------------------]  70%
  8969/12870 [============================================================>--------------------------]  70%
  8970/12870 [============================================================>--------------------------]  70%
  8971/12870 [============================================================>--------------------------]  70%
  8972/12870 [============================================================>--------------------------]  70%
  8973/12870 [============================================================>--------------------------]  70%
  8974/12870 [============================================================>--------------------------]  70%
  8975/12870 [============================================================>--------------------------]  70%
  8976/12870 [============================================================>--------------------------]  70%
  8977/12870 [============================================================>--------------------------]  70%
  8978/12870 [============================================================>--------------------------]  70%
  8979/12870 [============================================================>--------------------------]  70%
  8980/12870 [============================================================>--------------------------]  70%
  8981/12870 [============================================================>--------------------------]  70%
  8982/12870 [============================================================>--------------------------]  70%
  8983/12870 [============================================================>--------------------------]  70%
  8984/12870 [============================================================>--------------------------]  70%
  8985/12870 [============================================================>--------------------------]  70%
  8986/12870 [============================================================>--------------------------]  70%
  8987/12870 [============================================================>--------------------------]  70%
  8988/12870 [============================================================>--------------------------]  70%
  8989/12870 [============================================================>--------------------------]  70%
  8990/12870 [============================================================>--------------------------]  70%
  8991/12870 [============================================================>--------------------------]  70%
  8992/12870 [============================================================>--------------------------]  70%
  8993/12870 [============================================================>--------------------------]  70%
  8994/12870 [============================================================>--------------------------]  70%
  8995/12870 [============================================================>--------------------------]  70%
  8996/12870 [============================================================>--------------------------]  70%
  8997/12870 [============================================================>--------------------------]  70%
  8998/12870 [============================================================>--------------------------]  70%
  8999/12870 [============================================================>--------------------------]  70%
  9000/12870 [============================================================>--------------------------]  70%
  9001/12870 [============================================================>--------------------------]  70%
  9002/12870 [============================================================>--------------------------]  70%
  9003/12870 [============================================================>--------------------------]  70%
  9004/12870 [============================================================>--------------------------]  70%
  9005/12870 [============================================================>--------------------------]  70%
  9006/12870 [============================================================>--------------------------]  70%
  9007/12870 [============================================================>--------------------------]  70%
  9008/12870 [============================================================>--------------------------]  70%
  9009/12870 [============================================================>--------------------------]  70%
  9010/12870 [============================================================>--------------------------]  70%
  9011/12870 [============================================================>--------------------------]  70%
  9012/12870 [============================================================>--------------------------]  70%
  9013/12870 [============================================================>--------------------------]  70%
  9014/12870 [============================================================>--------------------------]  70%
  9015/12870 [============================================================>--------------------------]  70%
  9016/12870 [============================================================>--------------------------]  70%
  9017/12870 [============================================================>--------------------------]  70%
  9018/12870 [============================================================>--------------------------]  70%
  9019/12870 [============================================================>--------------------------]  70%
  9020/12870 [============================================================>--------------------------]  70%
  9021/12870 [============================================================>--------------------------]  70%
  9022/12870 [============================================================>--------------------------]  70%
  9023/12870 [============================================================>--------------------------]  70%
  9024/12870 [============================================================>--------------------------]  70%
  9025/12870 [============================================================>--------------------------]  70%
  9026/12870 [============================================================>--------------------------]  70%
  9027/12870 [============================================================>--------------------------]  70%
  9028/12870 [============================================================>--------------------------]  70%
  9029/12870 [============================================================>--------------------------]  70%
  9030/12870 [============================================================>--------------------------]  70%
  9031/12870 [============================================================>--------------------------]  70%
  9032/12870 [============================================================>--------------------------]  70%
  9033/12870 [============================================================>--------------------------]  70%
  9034/12870 [============================================================>--------------------------]  70%
  9035/12870 [============================================================>--------------------------]  70%
  9036/12870 [============================================================>--------------------------]  70%
  9037/12870 [============================================================>--------------------------]  70%
  9038/12870 [============================================================>--------------------------]  70%
  9039/12870 [============================================================>--------------------------]  70%
  9040/12870 [============================================================>--------------------------]  70%
  9041/12870 [============================================================>--------------------------]  70%
  9042/12870 [============================================================>--------------------------]  70%
  9043/12870 [============================================================>--------------------------]  70%
  9044/12870 [============================================================>--------------------------]  70%
  9045/12870 [============================================================>--------------------------]  70%
  9046/12870 [============================================================>--------------------------]  70%
  9047/12870 [============================================================>--------------------------]  70%
  9048/12870 [============================================================>--------------------------]  70%
  9049/12870 [============================================================>--------------------------]  70%
  9050/12870 [============================================================>--------------------------]  70%
  9051/12870 [============================================================>--------------------------]  70%
  9052/12870 [============================================================>--------------------------]  70%
  9053/12870 [============================================================>--------------------------]  70%
  9054/12870 [============================================================>--------------------------]  70%
  9055/12870 [============================================================>--------------------------]  70%
  9056/12870 [============================================================>--------------------------]  70%
  9057/12870 [============================================================>--------------------------]  70%
  9058/12870 [============================================================>--------------------------]  70%
  9059/12870 [============================================================>--------------------------]  70%
  9060/12870 [============================================================>--------------------------]  70%
  9061/12870 [============================================================>--------------------------]  70%
  9062/12870 [============================================================>--------------------------]  70%
  9063/12870 [============================================================>--------------------------]  70%
  9064/12870 [============================================================>--------------------------]  70%
  9065/12870 [============================================================>--------------------------]  70%
  9066/12870 [============================================================>--------------------------]  70%
  9067/12870 [============================================================>--------------------------]  70%
  9068/12870 [============================================================>--------------------------]  70%
  9069/12870 [============================================================>--------------------------]  70%
  9070/12870 [============================================================>--------------------------]  70%
  9071/12870 [============================================================>--------------------------]  70%
  9072/12870 [============================================================>--------------------------]  70%
  9073/12870 [============================================================>--------------------------]  70%
  9074/12870 [============================================================>--------------------------]  71%
  9075/12870 [============================================================>--------------------------]  71%
  9076/12870 [============================================================>--------------------------]  71%
  9077/12870 [============================================================>--------------------------]  71%
  9078/12870 [============================================================>--------------------------]  71%
  9079/12870 [============================================================>--------------------------]  71%
  9080/12870 [============================================================>--------------------------]  71%
  9081/12870 [============================================================>--------------------------]  71%
  9082/12870 [============================================================>--------------------------]  71%
  9083/12870 [============================================================>--------------------------]  71%
  9084/12870 [============================================================>--------------------------]  71%
  9085/12870 [============================================================>--------------------------]  71%
  9086/12870 [============================================================>--------------------------]  71%
  9087/12870 [============================================================>--------------------------]  71%
  9088/12870 [============================================================>--------------------------]  71%
  9089/12870 [============================================================>--------------------------]  71%
  9090/12870 [============================================================>--------------------------]  71%
  9091/12870 [============================================================>--------------------------]  71%
  9092/12870 [============================================================>--------------------------]  71%
  9093/12870 [============================================================>--------------------------]  71%
  9094/12870 [============================================================>--------------------------]  71%
  9095/12870 [============================================================>--------------------------]  71%
  9096/12870 [============================================================>--------------------------]  71%
  9097/12870 [============================================================>--------------------------]  71%
  9098/12870 [=============================================================>-------------------------]  71%
  9099/12870 [=============================================================>-------------------------]  71%
  9100/12870 [=============================================================>-------------------------]  71%
  9101/12870 [=============================================================>-------------------------]  71%
  9102/12870 [=============================================================>-------------------------]  71%
  9103/12870 [=============================================================>-------------------------]  71%
  9104/12870 [=============================================================>-------------------------]  71%
  9105/12870 [=============================================================>-------------------------]  71%
  9106/12870 [=============================================================>-------------------------]  71%
  9107/12870 [=============================================================>-------------------------]  71%
  9108/12870 [=============================================================>-------------------------]  71%
  9109/12870 [=============================================================>-------------------------]  71%
  9110/12870 [=============================================================>-------------------------]  71%
  9111/12870 [=============================================================>-------------------------]  71%
  9112/12870 [=============================================================>-------------------------]  71%
  9113/12870 [=============================================================>-------------------------]  71%
  9114/12870 [=============================================================>-------------------------]  71%
  9115/12870 [=============================================================>-------------------------]  71%
  9116/12870 [=============================================================>-------------------------]  71%
  9117/12870 [=============================================================>-------------------------]  71%
  9118/12870 [=============================================================>-------------------------]  71%
  9119/12870 [=============================================================>-------------------------]  71%
  9120/12870 [=============================================================>-------------------------]  71%
  9121/12870 [=============================================================>-------------------------]  71%
  9122/12870 [=============================================================>-------------------------]  71%
  9123/12870 [=============================================================>-------------------------]  71%
  9124/12870 [=============================================================>-------------------------]  71%
  9125/12870 [=============================================================>-------------------------]  71%
  9126/12870 [=============================================================>-------------------------]  71%
  9127/12870 [=============================================================>-------------------------]  71%
  9128/12870 [=============================================================>-------------------------]  71%
  9129/12870 [=============================================================>-------------------------]  71%
  9130/12870 [=============================================================>-------------------------]  71%
  9131/12870 [=============================================================>-------------------------]  71%
  9132/12870 [=============================================================>-------------------------]  71%
  9133/12870 [=============================================================>-------------------------]  71%
  9134/12870 [=============================================================>-------------------------]  71%
  9135/12870 [=============================================================>-------------------------]  71%
  9136/12870 [=============================================================>-------------------------]  71%
  9137/12870 [=============================================================>-------------------------]  71%
  9138/12870 [=============================================================>-------------------------]  71%
  9139/12870 [=============================================================>-------------------------]  71%
  9140/12870 [=============================================================>-------------------------]  71%
  9141/12870 [=============================================================>-------------------------]  71%
  9142/12870 [=============================================================>-------------------------]  71%
  9143/12870 [=============================================================>-------------------------]  71%
  9144/12870 [=============================================================>-------------------------]  71%
  9145/12870 [=============================================================>-------------------------]  71%
  9146/12870 [=============================================================>-------------------------]  71%
  9147/12870 [=============================================================>-------------------------]  71%
  9148/12870 [=============================================================>-------------------------]  71%
  9149/12870 [=============================================================>-------------------------]  71%
  9150/12870 [=============================================================>-------------------------]  71%
  9151/12870 [=============================================================>-------------------------]  71%
  9152/12870 [=============================================================>-------------------------]  71%
  9153/12870 [=============================================================>-------------------------]  71%
  9154/12870 [=============================================================>-------------------------]  71%
  9155/12870 [=============================================================>-------------------------]  71%
  9156/12870 [=============================================================>-------------------------]  71%
  9157/12870 [=============================================================>-------------------------]  71%
  9158/12870 [=============================================================>-------------------------]  71%
  9159/12870 [=============================================================>-------------------------]  71%
  9160/12870 [=============================================================>-------------------------]  71%
  9161/12870 [=============================================================>-------------------------]  71%
  9162/12870 [=============================================================>-------------------------]  71%
  9163/12870 [=============================================================>-------------------------]  71%
  9164/12870 [=============================================================>-------------------------]  71%
  9165/12870 [=============================================================>-------------------------]  71%
  9166/12870 [=============================================================>-------------------------]  71%
  9167/12870 [=============================================================>-------------------------]  71%
  9168/12870 [=============================================================>-------------------------]  71%
  9169/12870 [=============================================================>-------------------------]  71%
  9170/12870 [=============================================================>-------------------------]  71%
  9171/12870 [=============================================================>-------------------------]  71%
  9172/12870 [=============================================================>-------------------------]  71%
  9173/12870 [=============================================================>-------------------------]  71%
  9174/12870 [=============================================================>-------------------------]  71%
  9175/12870 [=============================================================>-------------------------]  71%
  9176/12870 [=============================================================>-------------------------]  71%
  9177/12870 [=============================================================>-------------------------]  71%
  9178/12870 [=============================================================>-------------------------]  71%
  9179/12870 [=============================================================>-------------------------]  71%
  9180/12870 [=============================================================>-------------------------]  71%
  9181/12870 [=============================================================>-------------------------]  71%
  9182/12870 [=============================================================>-------------------------]  71%
  9183/12870 [=============================================================>-------------------------]  71%
  9184/12870 [=============================================================>-------------------------]  71%
  9185/12870 [=============================================================>-------------------------]  71%
  9186/12870 [=============================================================>-------------------------]  71%
  9187/12870 [=============================================================>-------------------------]  71%
  9188/12870 [=============================================================>-------------------------]  71%
  9189/12870 [=============================================================>-------------------------]  71%
  9190/12870 [=============================================================>-------------------------]  71%
  9191/12870 [=============================================================>-------------------------]  71%
  9192/12870 [=============================================================>-------------------------]  71%
  9193/12870 [=============================================================>-------------------------]  71%
  9194/12870 [=============================================================>-------------------------]  71%
  9195/12870 [=============================================================>-------------------------]  71%
  9196/12870 [=============================================================>-------------------------]  71%
  9197/12870 [=============================================================>-------------------------]  71%
  9198/12870 [=============================================================>-------------------------]  71%
  9199/12870 [=============================================================>-------------------------]  71%
  9200/12870 [=============================================================>-------------------------]  71%
  9201/12870 [=============================================================>-------------------------]  71%
  9202/12870 [=============================================================>-------------------------]  71%
  9203/12870 [=============================================================>-------------------------]  72%
  9204/12870 [=============================================================>-------------------------]  72%
  9205/12870 [=============================================================>-------------------------]  72%
  9206/12870 [=============================================================>-------------------------]  72%
  9207/12870 [=============================================================>-------------------------]  72%
  9208/12870 [=============================================================>-------------------------]  72%
  9209/12870 [=============================================================>-------------------------]  72%
  9210/12870 [=============================================================>-------------------------]  72%
  9211/12870 [=============================================================>-------------------------]  72%
  9212/12870 [=============================================================>-------------------------]  72%
  9213/12870 [=============================================================>-------------------------]  72%
  9214/12870 [=============================================================>-------------------------]  72%
  9215/12870 [=============================================================>-------------------------]  72%
  9216/12870 [=============================================================>-------------------------]  72%
  9217/12870 [=============================================================>-------------------------]  72%
  9218/12870 [=============================================================>-------------------------]  72%
  9219/12870 [=============================================================>-------------------------]  72%
  9220/12870 [=============================================================>-------------------------]  72%
  9221/12870 [=============================================================>-------------------------]  72%
  9222/12870 [=============================================================>-------------------------]  72%
  9223/12870 [=============================================================>-------------------------]  72%
  9224/12870 [=============================================================>-------------------------]  72%
  9225/12870 [=============================================================>-------------------------]  72%
  9226/12870 [=============================================================>-------------------------]  72%
  9227/12870 [=============================================================>-------------------------]  72%
  9228/12870 [=============================================================>-------------------------]  72%
  9229/12870 [=============================================================>-------------------------]  72%
  9230/12870 [=============================================================>-------------------------]  72%
  9231/12870 [=============================================================>-------------------------]  72%
  9232/12870 [=============================================================>-------------------------]  72%
  9233/12870 [=============================================================>-------------------------]  72%
  9234/12870 [=============================================================>-------------------------]  72%
  9235/12870 [=============================================================>-------------------------]  72%
  9236/12870 [=============================================================>-------------------------]  72%
  9237/12870 [=============================================================>-------------------------]  72%
  9238/12870 [=============================================================>-------------------------]  72%
  9239/12870 [=============================================================>-------------------------]  72%
  9240/12870 [=============================================================>-------------------------]  72%
  9241/12870 [=============================================================>-------------------------]  72%
  9242/12870 [=============================================================>-------------------------]  72%
  9243/12870 [=============================================================>-------------------------]  72%
  9244/12870 [=============================================================>-------------------------]  72%
  9245/12870 [=============================================================>-------------------------]  72%
  9246/12870 [==============================================================>------------------------]  72%
  9247/12870 [==============================================================>------------------------]  72%
  9248/12870 [==============================================================>------------------------]  72%
  9249/12870 [==============================================================>------------------------]  72%
  9250/12870 [==============================================================>------------------------]  72%
  9251/12870 [==============================================================>------------------------]  72%
  9252/12870 [==============================================================>------------------------]  72%
  9253/12870 [==============================================================>------------------------]  72%
  9254/12870 [==============================================================>------------------------]  72%
  9255/12870 [==============================================================>------------------------]  72%
  9256/12870 [==============================================================>------------------------]  72%
  9257/12870 [==============================================================>------------------------]  72%
  9258/12870 [==============================================================>------------------------]  72%
  9259/12870 [==============================================================>------------------------]  72%
  9260/12870 [==============================================================>------------------------]  72%
  9261/12870 [==============================================================>------------------------]  72%
  9262/12870 [==============================================================>------------------------]  72%
  9263/12870 [==============================================================>------------------------]  72%
  9264/12870 [==============================================================>------------------------]  72%
  9265/12870 [==============================================================>------------------------]  72%
  9266/12870 [==============================================================>------------------------]  72%
  9267/12870 [==============================================================>------------------------]  72%
  9268/12870 [==============================================================>------------------------]  72%
  9269/12870 [==============================================================>------------------------]  72%
  9270/12870 [==============================================================>------------------------]  72%
  9271/12870 [==============================================================>------------------------]  72%
  9272/12870 [==============================================================>------------------------]  72%
  9273/12870 [==============================================================>------------------------]  72%
  9274/12870 [==============================================================>------------------------]  72%
  9275/12870 [==============================================================>------------------------]  72%
  9276/12870 [==============================================================>------------------------]  72%
  9277/12870 [==============================================================>------------------------]  72%
  9278/12870 [==============================================================>------------------------]  72%
  9279/12870 [==============================================================>------------------------]  72%
  9280/12870 [==============================================================>------------------------]  72%
  9281/12870 [==============================================================>------------------------]  72%
  9282/12870 [==============================================================>------------------------]  72%
  9283/12870 [==============================================================>------------------------]  72%
  9284/12870 [==============================================================>------------------------]  72%
  9285/12870 [==============================================================>------------------------]  72%
  9286/12870 [==============================================================>------------------------]  72%
  9287/12870 [==============================================================>------------------------]  72%
  9288/12870 [==============================================================>------------------------]  72%
  9289/12870 [==============================================================>------------------------]  72%
  9290/12870 [==============================================================>------------------------]  72%
  9291/12870 [==============================================================>------------------------]  72%
  9292/12870 [==============================================================>------------------------]  72%
  9293/12870 [==============================================================>------------------------]  72%
  9294/12870 [==============================================================>------------------------]  72%
  9295/12870 [==============================================================>------------------------]  72%
  9296/12870 [==============================================================>------------------------]  72%
  9297/12870 [==============================================================>------------------------]  72%
  9298/12870 [==============================================================>------------------------]  72%
  9299/12870 [==============================================================>------------------------]  72%
  9300/12870 [==============================================================>------------------------]  72%
  9301/12870 [==============================================================>------------------------]  72%
  9302/12870 [==============================================================>------------------------]  72%
  9303/12870 [==============================================================>------------------------]  72%
  9304/12870 [==============================================================>------------------------]  72%
  9305/12870 [==============================================================>------------------------]  72%
  9306/12870 [==============================================================>------------------------]  72%
  9307/12870 [==============================================================>------------------------]  72%
  9308/12870 [==============================================================>------------------------]  72%
  9309/12870 [==============================================================>------------------------]  72%
  9310/12870 [==============================================================>------------------------]  72%
  9311/12870 [==============================================================>------------------------]  72%
  9312/12870 [==============================================================>------------------------]  72%
  9313/12870 [==============================================================>------------------------]  72%
  9314/12870 [==============================================================>------------------------]  72%
  9315/12870 [==============================================================>------------------------]  72%
  9316/12870 [==============================================================>------------------------]  72%
  9317/12870 [==============================================================>------------------------]  72%
  9318/12870 [==============================================================>------------------------]  72%
  9319/12870 [==============================================================>------------------------]  72%
  9320/12870 [==============================================================>------------------------]  72%
  9321/12870 [==============================================================>------------------------]  72%
  9322/12870 [==============================================================>------------------------]  72%
  9323/12870 [==============================================================>------------------------]  72%
  9324/12870 [==============================================================>------------------------]  72%
  9325/12870 [==============================================================>------------------------]  72%
  9326/12870 [==============================================================>------------------------]  72%
  9327/12870 [==============================================================>------------------------]  72%
  9328/12870 [==============================================================>------------------------]  72%
  9329/12870 [==============================================================>------------------------]  72%
  9330/12870 [==============================================================>------------------------]  72%
  9331/12870 [==============================================================>------------------------]  73%
  9332/12870 [==============================================================>------------------------]  73%
  9333/12870 [==============================================================>------------------------]  73%
  9334/12870 [==============================================================>------------------------]  73%
  9335/12870 [==============================================================>------------------------]  73%
  9336/12870 [==============================================================>------------------------]  73%
  9337/12870 [==============================================================>------------------------]  73%
  9338/12870 [==============================================================>------------------------]  73%
  9339/12870 [==============================================================>------------------------]  73%
  9340/12870 [==============================================================>------------------------]  73%
  9341/12870 [==============================================================>------------------------]  73%
  9342/12870 [==============================================================>------------------------]  73%
  9343/12870 [==============================================================>------------------------]  73%
  9344/12870 [==============================================================>------------------------]  73%
  9345/12870 [==============================================================>------------------------]  73%
  9346/12870 [==============================================================>------------------------]  73%
  9347/12870 [==============================================================>------------------------]  73%
  9348/12870 [==============================================================>------------------------]  73%
  9349/12870 [==============================================================>------------------------]  73%
  9350/12870 [==============================================================>------------------------]  73%
  9351/12870 [==============================================================>------------------------]  73%
  9352/12870 [==============================================================>------------------------]  73%
  9353/12870 [==============================================================>------------------------]  73%
  9354/12870 [==============================================================>------------------------]  73%
  9355/12870 [==============================================================>------------------------]  73%
  9356/12870 [==============================================================>------------------------]  73%
  9357/12870 [==============================================================>------------------------]  73%
  9358/12870 [==============================================================>------------------------]  73%
  9359/12870 [==============================================================>------------------------]  73%
  9360/12870 [==============================================================>------------------------]  73%
  9361/12870 [==============================================================>------------------------]  73%
  9362/12870 [==============================================================>------------------------]  73%
  9363/12870 [==============================================================>------------------------]  73%
  9364/12870 [==============================================================>------------------------]  73%
  9365/12870 [==============================================================>------------------------]  73%
  9366/12870 [==============================================================>------------------------]  73%
  9367/12870 [==============================================================>------------------------]  73%
  9368/12870 [==============================================================>------------------------]  73%
  9369/12870 [==============================================================>------------------------]  73%
  9370/12870 [==============================================================>------------------------]  73%
  9371/12870 [==============================================================>------------------------]  73%
  9372/12870 [==============================================================>------------------------]  73%
  9373/12870 [==============================================================>------------------------]  73%
  9374/12870 [==============================================================>------------------------]  73%
  9375/12870 [==============================================================>------------------------]  73%
  9376/12870 [==============================================================>------------------------]  73%
  9377/12870 [==============================================================>------------------------]  73%
  9378/12870 [==============================================================>------------------------]  73%
  9379/12870 [==============================================================>------------------------]  73%
  9380/12870 [==============================================================>------------------------]  73%
  9381/12870 [==============================================================>------------------------]  73%
  9382/12870 [==============================================================>------------------------]  73%
  9383/12870 [==============================================================>------------------------]  73%
  9384/12870 [==============================================================>------------------------]  73%
  9385/12870 [==============================================================>------------------------]  73%
  9386/12870 [==============================================================>------------------------]  73%
  9387/12870 [==============================================================>------------------------]  73%
  9388/12870 [==============================================================>------------------------]  73%
  9389/12870 [==============================================================>------------------------]  73%
  9390/12870 [==============================================================>------------------------]  73%
  9391/12870 [==============================================================>------------------------]  73%
  9392/12870 [==============================================================>------------------------]  73%
  9393/12870 [==============================================================>------------------------]  73%
  9394/12870 [===============================================================>-----------------------]  73%
  9395/12870 [===============================================================>-----------------------]  73%
  9396/12870 [===============================================================>-----------------------]  73%
  9397/12870 [===============================================================>-----------------------]  73%
  9398/12870 [===============================================================>-----------------------]  73%
  9399/12870 [===============================================================>-----------------------]  73%
  9400/12870 [===============================================================>-----------------------]  73%
  9401/12870 [===============================================================>-----------------------]  73%
  9402/12870 [===============================================================>-----------------------]  73%
  9403/12870 [===============================================================>-----------------------]  73%
  9404/12870 [===============================================================>-----------------------]  73%
  9405/12870 [===============================================================>-----------------------]  73%
  9406/12870 [===============================================================>-----------------------]  73%
  9407/12870 [===============================================================>-----------------------]  73%
  9408/12870 [===============================================================>-----------------------]  73%
  9409/12870 [===============================================================>-----------------------]  73%
  9410/12870 [===============================================================>-----------------------]  73%
  9411/12870 [===============================================================>-----------------------]  73%
  9412/12870 [===============================================================>-----------------------]  73%
  9413/12870 [===============================================================>-----------------------]  73%
  9414/12870 [===============================================================>-----------------------]  73%
  9415/12870 [===============================================================>-----------------------]  73%
  9416/12870 [===============================================================>-----------------------]  73%
  9417/12870 [===============================================================>-----------------------]  73%
  9418/12870 [===============================================================>-----------------------]  73%
  9419/12870 [===============================================================>-----------------------]  73%
  9420/12870 [===============================================================>-----------------------]  73%
  9421/12870 [===============================================================>-----------------------]  73%
  9422/12870 [===============================================================>-----------------------]  73%
  9423/12870 [===============================================================>-----------------------]  73%
  9424/12870 [===============================================================>-----------------------]  73%
  9425/12870 [===============================================================>-----------------------]  73%
  9426/12870 [===============================================================>-----------------------]  73%
  9427/12870 [===============================================================>-----------------------]  73%
  9428/12870 [===============================================================>-----------------------]  73%
  9429/12870 [===============================================================>-----------------------]  73%
  9430/12870 [===============================================================>-----------------------]  73%
  9431/12870 [===============================================================>-----------------------]  73%
  9432/12870 [===============================================================>-----------------------]  73%
  9433/12870 [===============================================================>-----------------------]  73%
  9434/12870 [===============================================================>-----------------------]  73%
  9435/12870 [===============================================================>-----------------------]  73%
  9436/12870 [===============================================================>-----------------------]  73%
  9437/12870 [===============================================================>-----------------------]  73%
  9438/12870 [===============================================================>-----------------------]  73%
  9439/12870 [===============================================================>-----------------------]  73%
  9440/12870 [===============================================================>-----------------------]  73%
  9441/12870 [===============================================================>-----------------------]  73%
  9442/12870 [===============================================================>-----------------------]  73%
  9443/12870 [===============================================================>-----------------------]  73%
  9444/12870 [===============================================================>-----------------------]  73%
  9445/12870 [===============================================================>-----------------------]  73%
  9446/12870 [===============================================================>-----------------------]  73%
  9447/12870 [===============================================================>-----------------------]  73%
  9448/12870 [===============================================================>-----------------------]  73%
  9449/12870 [===============================================================>-----------------------]  73%
  9450/12870 [===============================================================>-----------------------]  73%
  9451/12870 [===============================================================>-----------------------]  73%
  9452/12870 [===============================================================>-----------------------]  73%
  9453/12870 [===============================================================>-----------------------]  73%
  9454/12870 [===============================================================>-----------------------]  73%
  9455/12870 [===============================================================>-----------------------]  73%
  9456/12870 [===============================================================>-----------------------]  73%
  9457/12870 [===============================================================>-----------------------]  73%
  9458/12870 [===============================================================>-----------------------]  73%
  9459/12870 [===============================================================>-----------------------]  73%
  9460/12870 [===============================================================>-----------------------]  74%
  9461/12870 [===============================================================>-----------------------]  74%
  9462/12870 [===============================================================>-----------------------]  74%
  9463/12870 [===============================================================>-----------------------]  74%
  9464/12870 [===============================================================>-----------------------]  74%
  9465/12870 [===============================================================>-----------------------]  74%
  9466/12870 [===============================================================>-----------------------]  74%
  9467/12870 [===============================================================>-----------------------]  74%
  9468/12870 [===============================================================>-----------------------]  74%
  9469/12870 [===============================================================>-----------------------]  74%
  9470/12870 [===============================================================>-----------------------]  74%
  9471/12870 [===============================================================>-----------------------]  74%
  9472/12870 [===============================================================>-----------------------]  74%
  9473/12870 [===============================================================>-----------------------]  74%
  9474/12870 [===============================================================>-----------------------]  74%
  9475/12870 [===============================================================>-----------------------]  74%
  9476/12870 [===============================================================>-----------------------]  74%
  9477/12870 [===============================================================>-----------------------]  74%
  9478/12870 [===============================================================>-----------------------]  74%
  9479/12870 [===============================================================>-----------------------]  74%
  9480/12870 [===============================================================>-----------------------]  74%
  9481/12870 [===============================================================>-----------------------]  74%
  9482/12870 [===============================================================>-----------------------]  74%
  9483/12870 [===============================================================>-----------------------]  74%
  9484/12870 [===============================================================>-----------------------]  74%
  9485/12870 [===============================================================>-----------------------]  74%
  9486/12870 [===============================================================>-----------------------]  74%
  9487/12870 [===============================================================>-----------------------]  74%
  9488/12870 [===============================================================>-----------------------]  74%
  9489/12870 [===============================================================>-----------------------]  74%
  9490/12870 [===============================================================>-----------------------]  74%
  9491/12870 [===============================================================>-----------------------]  74%
  9492/12870 [===============================================================>-----------------------]  74%
  9493/12870 [===============================================================>-----------------------]  74%
  9494/12870 [===============================================================>-----------------------]  74%
  9495/12870 [===============================================================>-----------------------]  74%
  9496/12870 [===============================================================>-----------------------]  74%
  9497/12870 [===============================================================>-----------------------]  74%
  9498/12870 [===============================================================>-----------------------]  74%
  9499/12870 [===============================================================>-----------------------]  74%
  9500/12870 [===============================================================>-----------------------]  74%
  9501/12870 [===============================================================>-----------------------]  74%
  9502/12870 [===============================================================>-----------------------]  74%
  9503/12870 [===============================================================>-----------------------]  74%
  9504/12870 [===============================================================>-----------------------]  74%
  9505/12870 [===============================================================>-----------------------]  74%
  9506/12870 [===============================================================>-----------------------]  74%
  9507/12870 [===============================================================>-----------------------]  74%
  9508/12870 [===============================================================>-----------------------]  74%
  9509/12870 [===============================================================>-----------------------]  74%
  9510/12870 [===============================================================>-----------------------]  74%
  9511/12870 [===============================================================>-----------------------]  74%
  9512/12870 [===============================================================>-----------------------]  74%
  9513/12870 [===============================================================>-----------------------]  74%
  9514/12870 [===============================================================>-----------------------]  74%
  9515/12870 [===============================================================>-----------------------]  74%
  9516/12870 [===============================================================>-----------------------]  74%
  9517/12870 [===============================================================>-----------------------]  74%
  9518/12870 [===============================================================>-----------------------]  74%
  9519/12870 [===============================================================>-----------------------]  74%
  9520/12870 [===============================================================>-----------------------]  74%
  9521/12870 [===============================================================>-----------------------]  74%
  9522/12870 [===============================================================>-----------------------]  74%
  9523/12870 [===============================================================>-----------------------]  74%
  9524/12870 [===============================================================>-----------------------]  74%
  9525/12870 [===============================================================>-----------------------]  74%
  9526/12870 [===============================================================>-----------------------]  74%
  9527/12870 [===============================================================>-----------------------]  74%
  9528/12870 [===============================================================>-----------------------]  74%
  9529/12870 [===============================================================>-----------------------]  74%
  9530/12870 [===============================================================>-----------------------]  74%
  9531/12870 [===============================================================>-----------------------]  74%
  9532/12870 [===============================================================>-----------------------]  74%
  9533/12870 [===============================================================>-----------------------]  74%
  9534/12870 [===============================================================>-----------------------]  74%
  9535/12870 [===============================================================>-----------------------]  74%
  9536/12870 [===============================================================>-----------------------]  74%
  9537/12870 [===============================================================>-----------------------]  74%
  9538/12870 [===============================================================>-----------------------]  74%
  9539/12870 [===============================================================>-----------------------]  74%
  9540/12870 [===============================================================>-----------------------]  74%
  9541/12870 [===============================================================>-----------------------]  74%
  9542/12870 [================================================================>----------------------]  74%
  9543/12870 [================================================================>----------------------]  74%
  9544/12870 [================================================================>----------------------]  74%
  9545/12870 [================================================================>----------------------]  74%
  9546/12870 [================================================================>----------------------]  74%
  9547/12870 [================================================================>----------------------]  74%
  9548/12870 [================================================================>----------------------]  74%
  9549/12870 [================================================================>----------------------]  74%
  9550/12870 [================================================================>----------------------]  74%
  9551/12870 [================================================================>----------------------]  74%
  9552/12870 [================================================================>----------------------]  74%
  9553/12870 [================================================================>----------------------]  74%
  9554/12870 [================================================================>----------------------]  74%
  9555/12870 [================================================================>----------------------]  74%
  9556/12870 [================================================================>----------------------]  74%
  9557/12870 [================================================================>----------------------]  74%
  9558/12870 [================================================================>----------------------]  74%
  9559/12870 [================================================================>----------------------]  74%
  9560/12870 [================================================================>----------------------]  74%
  9561/12870 [================================================================>----------------------]  74%
  9562/12870 [================================================================>----------------------]  74%
  9563/12870 [================================================================>----------------------]  74%
  9564/12870 [================================================================>----------------------]  74%
  9565/12870 [================================================================>----------------------]  74%
  9566/12870 [================================================================>----------------------]  74%
  9567/12870 [================================================================>----------------------]  74%
  9568/12870 [================================================================>----------------------]  74%
  9569/12870 [================================================================>----------------------]  74%
  9570/12870 [================================================================>----------------------]  74%
  9571/12870 [================================================================>----------------------]  74%
  9572/12870 [================================================================>----------------------]  74%
  9573/12870 [================================================================>----------------------]  74%
  9574/12870 [================================================================>----------------------]  74%
  9575/12870 [================================================================>----------------------]  74%
  9576/12870 [================================================================>----------------------]  74%
  9577/12870 [================================================================>----------------------]  74%
  9578/12870 [================================================================>----------------------]  74%
  9579/12870 [================================================================>----------------------]  74%
  9580/12870 [================================================================>----------------------]  74%
  9581/12870 [================================================================>----------------------]  74%
  9582/12870 [================================================================>----------------------]  74%
  9583/12870 [================================================================>----------------------]  74%
  9584/12870 [================================================================>----------------------]  74%
  9585/12870 [================================================================>----------------------]  74%
  9586/12870 [================================================================>----------------------]  74%
  9587/12870 [================================================================>----------------------]  74%
  9588/12870 [================================================================>----------------------]  74%
  9589/12870 [================================================================>----------------------]  75%
  9590/12870 [================================================================>----------------------]  75%
  9591/12870 [================================================================>----------------------]  75%
  9592/12870 [================================================================>----------------------]  75%
  9593/12870 [================================================================>----------------------]  75%
  9594/12870 [================================================================>----------------------]  75%
  9595/12870 [================================================================>----------------------]  75%
  9596/12870 [================================================================>----------------------]  75%
  9597/12870 [================================================================>----------------------]  75%
  9598/12870 [================================================================>----------------------]  75%
  9599/12870 [================================================================>----------------------]  75%
  9600/12870 [================================================================>----------------------]  75%
  9601/12870 [================================================================>----------------------]  75%
  9602/12870 [================================================================>----------------------]  75%
  9603/12870 [================================================================>----------------------]  75%
  9604/12870 [================================================================>----------------------]  75%
  9605/12870 [================================================================>----------------------]  75%
  9606/12870 [================================================================>----------------------]  75%
  9607/12870 [================================================================>----------------------]  75%
  9608/12870 [================================================================>----------------------]  75%
  9609/12870 [================================================================>----------------------]  75%
  9610/12870 [================================================================>----------------------]  75%
  9611/12870 [================================================================>----------------------]  75%
  9612/12870 [================================================================>----------------------]  75%
  9613/12870 [================================================================>----------------------]  75%
  9614/12870 [================================================================>----------------------]  75%
  9615/12870 [================================================================>----------------------]  75%
  9616/12870 [================================================================>----------------------]  75%
  9617/12870 [================================================================>----------------------]  75%
  9618/12870 [================================================================>----------------------]  75%
  9619/12870 [================================================================>----------------------]  75%
  9620/12870 [================================================================>----------------------]  75%
  9621/12870 [================================================================>----------------------]  75%
  9622/12870 [================================================================>----------------------]  75%
  9623/12870 [================================================================>----------------------]  75%
  9624/12870 [================================================================>----------------------]  75%
  9625/12870 [================================================================>----------------------]  75%
  9626/12870 [================================================================>----------------------]  75%
  9627/12870 [================================================================>----------------------]  75%
  9628/12870 [================================================================>----------------------]  75%
  9629/12870 [================================================================>----------------------]  75%
  9630/12870 [================================================================>----------------------]  75%
  9631/12870 [================================================================>----------------------]  75%
  9632/12870 [================================================================>----------------------]  75%
  9633/12870 [================================================================>----------------------]  75%
  9634/12870 [================================================================>----------------------]  75%
  9635/12870 [================================================================>----------------------]  75%
  9636/12870 [================================================================>----------------------]  75%
  9637/12870 [================================================================>----------------------]  75%
  9638/12870 [================================================================>----------------------]  75%
  9639/12870 [================================================================>----------------------]  75%
  9640/12870 [================================================================>----------------------]  75%
  9641/12870 [================================================================>----------------------]  75%
  9642/12870 [================================================================>----------------------]  75%
  9643/12870 [================================================================>----------------------]  75%
  9644/12870 [================================================================>----------------------]  75%
  9645/12870 [================================================================>----------------------]  75%
  9646/12870 [================================================================>----------------------]  75%
  9647/12870 [================================================================>----------------------]  75%
  9648/12870 [================================================================>----------------------]  75%
  9649/12870 [================================================================>----------------------]  75%
  9650/12870 [================================================================>----------------------]  75%
  9651/12870 [================================================================>----------------------]  75%
  9652/12870 [================================================================>----------------------]  75%
  9653/12870 [================================================================>----------------------]  75%
  9654/12870 [================================================================>----------------------]  75%
  9655/12870 [================================================================>----------------------]  75%
  9656/12870 [================================================================>----------------------]  75%
  9657/12870 [================================================================>----------------------]  75%
  9658/12870 [================================================================>----------------------]  75%
  9659/12870 [================================================================>----------------------]  75%
  9660/12870 [================================================================>----------------------]  75%
  9661/12870 [================================================================>----------------------]  75%
  9662/12870 [================================================================>----------------------]  75%
  9663/12870 [================================================================>----------------------]  75%
  9664/12870 [================================================================>----------------------]  75%
  9665/12870 [================================================================>----------------------]  75%
  9666/12870 [================================================================>----------------------]  75%
  9667/12870 [================================================================>----------------------]  75%
  9668/12870 [================================================================>----------------------]  75%
  9669/12870 [================================================================>----------------------]  75%
  9670/12870 [================================================================>----------------------]  75%
  9671/12870 [================================================================>----------------------]  75%
  9672/12870 [================================================================>----------------------]  75%
  9673/12870 [================================================================>----------------------]  75%
  9674/12870 [================================================================>----------------------]  75%
  9675/12870 [================================================================>----------------------]  75%
  9676/12870 [================================================================>----------------------]  75%
  9677/12870 [================================================================>----------------------]  75%
  9678/12870 [================================================================>----------------------]  75%
  9679/12870 [================================================================>----------------------]  75%
  9680/12870 [================================================================>----------------------]  75%
  9681/12870 [================================================================>----------------------]  75%
  9682/12870 [================================================================>----------------------]  75%
  9683/12870 [================================================================>----------------------]  75%
  9684/12870 [================================================================>----------------------]  75%
  9685/12870 [================================================================>----------------------]  75%
  9686/12870 [================================================================>----------------------]  75%
  9687/12870 [================================================================>----------------------]  75%
  9688/12870 [================================================================>----------------------]  75%
  9689/12870 [================================================================>----------------------]  75%
  9690/12870 [=================================================================>---------------------]  75%
  9691/12870 [=================================================================>---------------------]  75%
  9692/12870 [=================================================================>---------------------]  75%
  9693/12870 [=================================================================>---------------------]  75%
  9694/12870 [=================================================================>---------------------]  75%
  9695/12870 [=================================================================>---------------------]  75%
  9696/12870 [=================================================================>---------------------]  75%
  9697/12870 [=================================================================>---------------------]  75%
  9698/12870 [=================================================================>---------------------]  75%
  9699/12870 [=================================================================>---------------------]  75%
  9700/12870 [=================================================================>---------------------]  75%
  9701/12870 [=================================================================>---------------------]  75%
  9702/12870 [=================================================================>---------------------]  75%
  9703/12870 [=================================================================>---------------------]  75%
  9704/12870 [=================================================================>---------------------]  75%
  9705/12870 [=================================================================>---------------------]  75%
  9706/12870 [=================================================================>---------------------]  75%
  9707/12870 [=================================================================>---------------------]  75%
  9708/12870 [=================================================================>---------------------]  75%
  9709/12870 [=================================================================>---------------------]  75%
  9710/12870 [=================================================================>---------------------]  75%
  9711/12870 [=================================================================>---------------------]  75%
  9712/12870 [=================================================================>---------------------]  75%
  9713/12870 [=================================================================>---------------------]  75%
  9714/12870 [=================================================================>---------------------]  75%
  9715/12870 [=================================================================>---------------------]  75%
  9716/12870 [=================================================================>---------------------]  75%
  9717/12870 [=================================================================>---------------------]  76%
  9718/12870 [=================================================================>---------------------]  76%
  9719/12870 [=================================================================>---------------------]  76%
  9720/12870 [=================================================================>---------------------]  76%
  9721/12870 [=================================================================>---------------------]  76%
  9722/12870 [=================================================================>---------------------]  76%
  9723/12870 [=================================================================>---------------------]  76%
  9724/12870 [=================================================================>---------------------]  76%
  9725/12870 [=================================================================>---------------------]  76%
  9726/12870 [=================================================================>---------------------]  76%
  9727/12870 [=================================================================>---------------------]  76%
  9728/12870 [=================================================================>---------------------]  76%
  9729/12870 [=================================================================>---------------------]  76%
  9730/12870 [=================================================================>---------------------]  76%
  9731/12870 [=================================================================>---------------------]  76%
  9732/12870 [=================================================================>---------------------]  76%
  9733/12870 [=================================================================>---------------------]  76%
  9734/12870 [=================================================================>---------------------]  76%
  9735/12870 [=================================================================>---------------------]  76%
  9736/12870 [=================================================================>---------------------]  76%
  9737/12870 [=================================================================>---------------------]  76%
  9738/12870 [=================================================================>---------------------]  76%
  9739/12870 [=================================================================>---------------------]  76%
  9740/12870 [=================================================================>---------------------]  76%
  9741/12870 [=================================================================>---------------------]  76%
  9742/12870 [=================================================================>---------------------]  76%
  9743/12870 [=================================================================>---------------------]  76%
  9744/12870 [=================================================================>---------------------]  76%
  9745/12870 [=================================================================>---------------------]  76%
  9746/12870 [=================================================================>---------------------]  76%
  9747/12870 [=================================================================>---------------------]  76%
  9748/12870 [=================================================================>---------------------]  76%
  9749/12870 [=================================================================>---------------------]  76%
  9750/12870 [=================================================================>---------------------]  76%
  9751/12870 [=================================================================>---------------------]  76%
  9752/12870 [=================================================================>---------------------]  76%
  9753/12870 [=================================================================>---------------------]  76%
  9754/12870 [=================================================================>---------------------]  76%
  9755/12870 [=================================================================>---------------------]  76%
  9756/12870 [=================================================================>---------------------]  76%
  9757/12870 [=================================================================>---------------------]  76%
  9758/12870 [=================================================================>---------------------]  76%
  9759/12870 [=================================================================>---------------------]  76%
  9760/12870 [=================================================================>---------------------]  76%
  9761/12870 [=================================================================>---------------------]  76%
  9762/12870 [=================================================================>---------------------]  76%
  9763/12870 [=================================================================>---------------------]  76%
  9764/12870 [=================================================================>---------------------]  76%
  9765/12870 [=================================================================>---------------------]  76%
  9766/12870 [=================================================================>---------------------]  76%
  9767/12870 [=================================================================>---------------------]  76%
  9768/12870 [=================================================================>---------------------]  76%
  9769/12870 [=================================================================>---------------------]  76%
  9770/12870 [=================================================================>---------------------]  76%
  9771/12870 [=================================================================>---------------------]  76%
  9772/12870 [=================================================================>---------------------]  76%
  9773/12870 [=================================================================>---------------------]  76%
  9774/12870 [=================================================================>---------------------]  76%
  9775/12870 [=================================================================>---------------------]  76%
  9776/12870 [=================================================================>---------------------]  76%
  9777/12870 [=================================================================>---------------------]  76%
  9778/12870 [=================================================================>---------------------]  76%
  9779/12870 [=================================================================>---------------------]  76%
  9780/12870 [=================================================================>---------------------]  76%
  9781/12870 [=================================================================>---------------------]  76%
  9782/12870 [=================================================================>---------------------]  76%
  9783/12870 [=================================================================>---------------------]  76%
  9784/12870 [=================================================================>---------------------]  76%
  9785/12870 [=================================================================>---------------------]  76%
  9786/12870 [=================================================================>---------------------]  76%
  9787/12870 [=================================================================>---------------------]  76%
  9788/12870 [=================================================================>---------------------]  76%
  9789/12870 [=================================================================>---------------------]  76%
  9790/12870 [=================================================================>---------------------]  76%
  9791/12870 [=================================================================>---------------------]  76%
  9792/12870 [=================================================================>---------------------]  76%
  9793/12870 [=================================================================>---------------------]  76%
  9794/12870 [=================================================================>---------------------]  76%
  9795/12870 [=================================================================>---------------------]  76%
  9796/12870 [=================================================================>---------------------]  76%
  9797/12870 [=================================================================>---------------------]  76%
  9798/12870 [=================================================================>---------------------]  76%
  9799/12870 [=================================================================>---------------------]  76%
  9800/12870 [=================================================================>---------------------]  76%
  9801/12870 [=================================================================>---------------------]  76%
  9802/12870 [=================================================================>---------------------]  76%
  9803/12870 [=================================================================>---------------------]  76%
  9804/12870 [=================================================================>---------------------]  76%
  9805/12870 [=================================================================>---------------------]  76%
  9806/12870 [=================================================================>---------------------]  76%
  9807/12870 [=================================================================>---------------------]  76%
  9808/12870 [=================================================================>---------------------]  76%
  9809/12870 [=================================================================>---------------------]  76%
  9810/12870 [=================================================================>---------------------]  76%
  9811/12870 [=================================================================>---------------------]  76%
  9812/12870 [=================================================================>---------------------]  76%
  9813/12870 [=================================================================>---------------------]  76%
  9814/12870 [=================================================================>---------------------]  76%
  9815/12870 [=================================================================>---------------------]  76%
  9816/12870 [=================================================================>---------------------]  76%
  9817/12870 [=================================================================>---------------------]  76%
  9818/12870 [=================================================================>---------------------]  76%
  9819/12870 [=================================================================>---------------------]  76%
  9820/12870 [=================================================================>---------------------]  76%
  9821/12870 [=================================================================>---------------------]  76%
  9822/12870 [=================================================================>---------------------]  76%
  9823/12870 [=================================================================>---------------------]  76%
  9824/12870 [=================================================================>---------------------]  76%
  9825/12870 [=================================================================>---------------------]  76%
  9826/12870 [=================================================================>---------------------]  76%
  9827/12870 [=================================================================>---------------------]  76%
  9828/12870 [=================================================================>---------------------]  76%
  9829/12870 [=================================================================>---------------------]  76%
  9830/12870 [=================================================================>---------------------]  76%
  9831/12870 [=================================================================>---------------------]  76%
  9832/12870 [=================================================================>---------------------]  76%
  9833/12870 [=================================================================>---------------------]  76%
  9834/12870 [=================================================================>---------------------]  76%
  9835/12870 [=================================================================>---------------------]  76%
  9836/12870 [=================================================================>---------------------]  76%
  9837/12870 [=================================================================>---------------------]  76%
  9838/12870 [==================================================================>--------------------]  76%
  9839/12870 [==================================================================>--------------------]  76%
  9840/12870 [==================================================================>--------------------]  76%
  9841/12870 [==================================================================>--------------------]  76%
  9842/12870 [==================================================================>--------------------]  76%
  9843/12870 [==================================================================>--------------------]  76%
  9844/12870 [==================================================================>--------------------]  76%
  9845/12870 [==================================================================>--------------------]  76%
  9846/12870 [==================================================================>--------------------]  77%
  9847/12870 [==================================================================>--------------------]  77%
  9848/12870 [==================================================================>--------------------]  77%
  9849/12870 [==================================================================>--------------------]  77%
  9850/12870 [==================================================================>--------------------]  77%
  9851/12870 [==================================================================>--------------------]  77%
  9852/12870 [==================================================================>--------------------]  77%
  9853/12870 [==================================================================>--------------------]  77%
  9854/12870 [==================================================================>--------------------]  77%
  9855/12870 [==================================================================>--------------------]  77%
  9856/12870 [==================================================================>--------------------]  77%
  9857/12870 [==================================================================>--------------------]  77%
  9858/12870 [==================================================================>--------------------]  77%
  9859/12870 [==================================================================>--------------------]  77%
  9860/12870 [==================================================================>--------------------]  77%
  9861/12870 [==================================================================>--------------------]  77%
  9862/12870 [==================================================================>--------------------]  77%
  9863/12870 [==================================================================>--------------------]  77%
  9864/12870 [==================================================================>--------------------]  77%
  9865/12870 [==================================================================>--------------------]  77%
  9866/12870 [==================================================================>--------------------]  77%
  9867/12870 [==================================================================>--------------------]  77%
  9868/12870 [==================================================================>--------------------]  77%
  9869/12870 [==================================================================>--------------------]  77%
  9870/12870 [==================================================================>--------------------]  77%
  9871/12870 [==================================================================>--------------------]  77%
  9872/12870 [==================================================================>--------------------]  77%
  9873/12870 [==================================================================>--------------------]  77%
  9874/12870 [==================================================================>--------------------]  77%
  9875/12870 [==================================================================>--------------------]  77%
  9876/12870 [==================================================================>--------------------]  77%
  9877/12870 [==================================================================>--------------------]  77%
  9878/12870 [==================================================================>--------------------]  77%
  9879/12870 [==================================================================>--------------------]  77%
  9880/12870 [==================================================================>--------------------]  77%
  9881/12870 [==================================================================>--------------------]  77%
  9882/12870 [==================================================================>--------------------]  77%
  9883/12870 [==================================================================>--------------------]  77%
  9884/12870 [==================================================================>--------------------]  77%
  9885/12870 [==================================================================>--------------------]  77%
  9886/12870 [==================================================================>--------------------]  77%
  9887/12870 [==================================================================>--------------------]  77%
  9888/12870 [==================================================================>--------------------]  77%
  9889/12870 [==================================================================>--------------------]  77%
  9890/12870 [==================================================================>--------------------]  77%
  9891/12870 [==================================================================>--------------------]  77%
  9892/12870 [==================================================================>--------------------]  77%
  9893/12870 [==================================================================>--------------------]  77%
  9894/12870 [==================================================================>--------------------]  77%
  9895/12870 [==================================================================>--------------------]  77%
  9896/12870 [==================================================================>--------------------]  77%
  9897/12870 [==================================================================>--------------------]  77%
  9898/12870 [==================================================================>--------------------]  77%
  9899/12870 [==================================================================>--------------------]  77%
  9900/12870 [==================================================================>--------------------]  77%
  9901/12870 [==================================================================>--------------------]  77%
  9902/12870 [==================================================================>--------------------]  77%
  9903/12870 [==================================================================>--------------------]  77%
  9904/12870 [==================================================================>--------------------]  77%
  9905/12870 [==================================================================>--------------------]  77%
  9906/12870 [==================================================================>--------------------]  77%
  9907/12870 [==================================================================>--------------------]  77%
  9908/12870 [==================================================================>--------------------]  77%
  9909/12870 [==================================================================>--------------------]  77%
  9910/12870 [==================================================================>--------------------]  77%
  9911/12870 [==================================================================>--------------------]  77%
  9912/12870 [==================================================================>--------------------]  77%
  9913/12870 [==================================================================>--------------------]  77%
  9914/12870 [==================================================================>--------------------]  77%
  9915/12870 [==================================================================>--------------------]  77%
  9916/12870 [==================================================================>--------------------]  77%
  9917/12870 [==================================================================>--------------------]  77%
  9918/12870 [==================================================================>--------------------]  77%
  9919/12870 [==================================================================>--------------------]  77%
  9920/12870 [==================================================================>--------------------]  77%
  9921/12870 [==================================================================>--------------------]  77%
  9922/12870 [==================================================================>--------------------]  77%
  9923/12870 [==================================================================>--------------------]  77%
  9924/12870 [==================================================================>--------------------]  77%
  9925/12870 [==================================================================>--------------------]  77%
  9926/12870 [==================================================================>--------------------]  77%
  9927/12870 [==================================================================>--------------------]  77%
  9928/12870 [==================================================================>--------------------]  77%
  9929/12870 [==================================================================>--------------------]  77%
  9930/12870 [==================================================================>--------------------]  77%
  9931/12870 [==================================================================>--------------------]  77%
  9932/12870 [==================================================================>--------------------]  77%
  9933/12870 [==================================================================>--------------------]  77%
  9934/12870 [==================================================================>--------------------]  77%
  9935/12870 [==================================================================>--------------------]  77%
  9936/12870 [==================================================================>--------------------]  77%
  9937/12870 [==================================================================>--------------------]  77%
  9938/12870 [==================================================================>--------------------]  77%
  9939/12870 [==================================================================>--------------------]  77%
  9940/12870 [==================================================================>--------------------]  77%
  9941/12870 [==================================================================>--------------------]  77%
  9942/12870 [==================================================================>--------------------]  77%
  9943/12870 [==================================================================>--------------------]  77%
  9944/12870 [==================================================================>--------------------]  77%
  9945/12870 [==================================================================>--------------------]  77%
  9946/12870 [==================================================================>--------------------]  77%
  9947/12870 [==================================================================>--------------------]  77%
  9948/12870 [==================================================================>--------------------]  77%
  9949/12870 [==================================================================>--------------------]  77%
  9950/12870 [==================================================================>--------------------]  77%
  9951/12870 [==================================================================>--------------------]  77%
  9952/12870 [==================================================================>--------------------]  77%
  9953/12870 [==================================================================>--------------------]  77%
  9954/12870 [==================================================================>--------------------]  77%
  9955/12870 [==================================================================>--------------------]  77%
  9956/12870 [==================================================================>--------------------]  77%
  9957/12870 [==================================================================>--------------------]  77%
  9958/12870 [==================================================================>--------------------]  77%
  9959/12870 [==================================================================>--------------------]  77%
  9960/12870 [==================================================================>--------------------]  77%
  9961/12870 [==================================================================>--------------------]  77%
  9962/12870 [==================================================================>--------------------]  77%
  9963/12870 [==================================================================>--------------------]  77%
  9964/12870 [==================================================================>--------------------]  77%
  9965/12870 [==================================================================>--------------------]  77%
  9966/12870 [==================================================================>--------------------]  77%
  9967/12870 [==================================================================>--------------------]  77%
  9968/12870 [==================================================================>--------------------]  77%
  9969/12870 [==================================================================>--------------------]  77%
  9970/12870 [==================================================================>--------------------]  77%
  9971/12870 [==================================================================>--------------------]  77%
  9972/12870 [==================================================================>--------------------]  77%
  9973/12870 [==================================================================>--------------------]  77%
  9974/12870 [==================================================================>--------------------]  77%
  9975/12870 [==================================================================>--------------------]  78%
  9976/12870 [==================================================================>--------------------]  78%
  9977/12870 [==================================================================>--------------------]  78%
  9978/12870 [==================================================================>--------------------]  78%
  9979/12870 [==================================================================>--------------------]  78%
  9980/12870 [==================================================================>--------------------]  78%
  9981/12870 [==================================================================>--------------------]  78%
  9982/12870 [==================================================================>--------------------]  78%
  9983/12870 [==================================================================>--------------------]  78%
  9984/12870 [==================================================================>--------------------]  78%
  9985/12870 [==================================================================>--------------------]  78%
  9986/12870 [===================================================================>-------------------]  78%
  9987/12870 [===================================================================>-------------------]  78%
  9988/12870 [===================================================================>-------------------]  78%
  9989/12870 [===================================================================>-------------------]  78%
  9990/12870 [===================================================================>-------------------]  78%
  9991/12870 [===================================================================>-------------------]  78%
  9992/12870 [===================================================================>-------------------]  78%
  9993/12870 [===================================================================>-------------------]  78%
  9994/12870 [===================================================================>-------------------]  78%
  9995/12870 [===================================================================>-------------------]  78%
  9996/12870 [===================================================================>-------------------]  78%
  9997/12870 [===================================================================>-------------------]  78%
  9998/12870 [===================================================================>-------------------]  78%
  9999/12870 [===================================================================>-------------------]  78%
  10000/12870 [==================================================================>-------------------]  78%
  10001/12870 [==================================================================>-------------------]  78%
  10002/12870 [==================================================================>-------------------]  78%
  10003/12870 [==================================================================>-------------------]  78%
  10004/12870 [==================================================================>-------------------]  78%
  10005/12870 [==================================================================>-------------------]  78%
  10006/12870 [==================================================================>-------------------]  78%
  10007/12870 [==================================================================>-------------------]  78%
  10008/12870 [==================================================================>-------------------]  78%
  10009/12870 [==================================================================>-------------------]  78%
  10010/12870 [==================================================================>-------------------]  78%
  10011/12870 [==================================================================>-------------------]  78%
  10012/12870 [==================================================================>-------------------]  78%
  10013/12870 [==================================================================>-------------------]  78%
  10014/12870 [==================================================================>-------------------]  78%
  10015/12870 [==================================================================>-------------------]  78%
  10016/12870 [==================================================================>-------------------]  78%
  10017/12870 [==================================================================>-------------------]  78%
  10018/12870 [==================================================================>-------------------]  78%
  10019/12870 [==================================================================>-------------------]  78%
  10020/12870 [==================================================================>-------------------]  78%
  10021/12870 [==================================================================>-------------------]  78%
  10022/12870 [==================================================================>-------------------]  78%
  10023/12870 [==================================================================>-------------------]  78%
  10024/12870 [==================================================================>-------------------]  78%
  10025/12870 [==================================================================>-------------------]  78%
  10026/12870 [==================================================================>-------------------]  78%
  10027/12870 [==================================================================>-------------------]  78%
  10028/12870 [==================================================================>-------------------]  78%
  10029/12870 [==================================================================>-------------------]  78%
  10030/12870 [==================================================================>-------------------]  78%
  10031/12870 [==================================================================>-------------------]  78%
  10032/12870 [==================================================================>-------------------]  78%
  10033/12870 [==================================================================>-------------------]  78%
  10034/12870 [==================================================================>-------------------]  78%
  10035/12870 [==================================================================>-------------------]  78%
  10036/12870 [==================================================================>-------------------]  78%
  10037/12870 [==================================================================>-------------------]  78%
  10038/12870 [==================================================================>-------------------]  78%
  10039/12870 [==================================================================>-------------------]  78%
  10040/12870 [==================================================================>-------------------]  78%
  10041/12870 [==================================================================>-------------------]  78%
  10042/12870 [==================================================================>-------------------]  78%
  10043/12870 [==================================================================>-------------------]  78%
  10044/12870 [==================================================================>-------------------]  78%
  10045/12870 [==================================================================>-------------------]  78%
  10046/12870 [==================================================================>-------------------]  78%
  10047/12870 [==================================================================>-------------------]  78%
  10048/12870 [==================================================================>-------------------]  78%
  10049/12870 [==================================================================>-------------------]  78%
  10050/12870 [==================================================================>-------------------]  78%
  10051/12870 [==================================================================>-------------------]  78%
  10052/12870 [==================================================================>-------------------]  78%
  10053/12870 [==================================================================>-------------------]  78%
  10054/12870 [==================================================================>-------------------]  78%
  10055/12870 [==================================================================>-------------------]  78%
  10056/12870 [==================================================================>-------------------]  78%
  10057/12870 [==================================================================>-------------------]  78%
  10058/12870 [==================================================================>-------------------]  78%
  10059/12870 [==================================================================>-------------------]  78%
  10060/12870 [==================================================================>-------------------]  78%
  10061/12870 [==================================================================>-------------------]  78%
  10062/12870 [==================================================================>-------------------]  78%
  10063/12870 [==================================================================>-------------------]  78%
  10064/12870 [==================================================================>-------------------]  78%
  10065/12870 [==================================================================>-------------------]  78%
  10066/12870 [==================================================================>-------------------]  78%
  10067/12870 [==================================================================>-------------------]  78%
  10068/12870 [==================================================================>-------------------]  78%
  10069/12870 [==================================================================>-------------------]  78%
  10070/12870 [==================================================================>-------------------]  78%
  10071/12870 [==================================================================>-------------------]  78%
  10072/12870 [==================================================================>-------------------]  78%
  10073/12870 [==================================================================>-------------------]  78%
  10074/12870 [==================================================================>-------------------]  78%
  10075/12870 [==================================================================>-------------------]  78%
  10076/12870 [==================================================================>-------------------]  78%
  10077/12870 [==================================================================>-------------------]  78%
  10078/12870 [==================================================================>-------------------]  78%
  10079/12870 [==================================================================>-------------------]  78%
  10080/12870 [==================================================================>-------------------]  78%
  10081/12870 [==================================================================>-------------------]  78%
  10082/12870 [==================================================================>-------------------]  78%
  10083/12870 [==================================================================>-------------------]  78%
  10084/12870 [==================================================================>-------------------]  78%
  10085/12870 [==================================================================>-------------------]  78%
  10086/12870 [==================================================================>-------------------]  78%
  10087/12870 [==================================================================>-------------------]  78%
  10088/12870 [==================================================================>-------------------]  78%
  10089/12870 [==================================================================>-------------------]  78%
  10090/12870 [==================================================================>-------------------]  78%
  10091/12870 [==================================================================>-------------------]  78%
  10092/12870 [==================================================================>-------------------]  78%
  10093/12870 [==================================================================>-------------------]  78%
  10094/12870 [==================================================================>-------------------]  78%
  10095/12870 [==================================================================>-------------------]  78%
  10096/12870 [==================================================================>-------------------]  78%
  10097/12870 [==================================================================>-------------------]  78%
  10098/12870 [==================================================================>-------------------]  78%
  10099/12870 [==================================================================>-------------------]  78%
  10100/12870 [==================================================================>-------------------]  78%
  10101/12870 [==================================================================>-------------------]  78%
  10102/12870 [===================================================================>------------------]  78%
  10103/12870 [===================================================================>------------------]  79%
  10104/12870 [===================================================================>------------------]  79%
  10105/12870 [===================================================================>------------------]  79%
  10106/12870 [===================================================================>------------------]  79%
  10107/12870 [===================================================================>------------------]  79%
  10108/12870 [===================================================================>------------------]  79%
  10109/12870 [===================================================================>------------------]  79%
  10110/12870 [===================================================================>------------------]  79%
  10111/12870 [===================================================================>------------------]  79%
  10112/12870 [===================================================================>------------------]  79%
  10113/12870 [===================================================================>------------------]  79%
  10114/12870 [===================================================================>------------------]  79%
  10115/12870 [===================================================================>------------------]  79%
  10116/12870 [===================================================================>------------------]  79%
  10117/12870 [===================================================================>------------------]  79%
  10118/12870 [===================================================================>------------------]  79%
  10119/12870 [===================================================================>------------------]  79%
  10120/12870 [===================================================================>------------------]  79%
  10121/12870 [===================================================================>------------------]  79%
  10122/12870 [===================================================================>------------------]  79%
  10123/12870 [===================================================================>------------------]  79%
  10124/12870 [===================================================================>------------------]  79%
  10125/12870 [===================================================================>------------------]  79%
  10126/12870 [===================================================================>------------------]  79%
  10127/12870 [===================================================================>------------------]  79%
  10128/12870 [===================================================================>------------------]  79%
  10129/12870 [===================================================================>------------------]  79%
  10130/12870 [===================================================================>------------------]  79%
  10131/12870 [===================================================================>------------------]  79%
  10132/12870 [===================================================================>------------------]  79%
  10133/12870 [===================================================================>------------------]  79%
  10134/12870 [===================================================================>------------------]  79%
  10135/12870 [===================================================================>------------------]  79%
  10136/12870 [===================================================================>------------------]  79%
  10137/12870 [===================================================================>------------------]  79%
  10138/12870 [===================================================================>------------------]  79%
  10139/12870 [===================================================================>------------------]  79%
  10140/12870 [===================================================================>------------------]  79%
  10141/12870 [===================================================================>------------------]  79%
  10142/12870 [===================================================================>------------------]  79%
  10143/12870 [===================================================================>------------------]  79%
  10144/12870 [===================================================================>------------------]  79%
  10145/12870 [===================================================================>------------------]  79%
  10146/12870 [===================================================================>------------------]  79%
  10147/12870 [===================================================================>------------------]  79%
  10148/12870 [===================================================================>------------------]  79%
  10149/12870 [===================================================================>------------------]  79%
  10150/12870 [===================================================================>------------------]  79%
  10151/12870 [===================================================================>------------------]  79%
  10152/12870 [===================================================================>------------------]  79%
  10153/12870 [===================================================================>------------------]  79%
  10154/12870 [===================================================================>------------------]  79%
  10155/12870 [===================================================================>------------------]  79%
  10156/12870 [===================================================================>------------------]  79%
  10157/12870 [===================================================================>------------------]  79%
  10158/12870 [===================================================================>------------------]  79%
  10159/12870 [===================================================================>------------------]  79%
  10160/12870 [===================================================================>------------------]  79%
  10161/12870 [===================================================================>------------------]  79%
  10162/12870 [===================================================================>------------------]  79%
  10163/12870 [===================================================================>------------------]  79%
  10164/12870 [===================================================================>------------------]  79%
  10165/12870 [===================================================================>------------------]  79%
  10166/12870 [===================================================================>------------------]  79%
  10167/12870 [===================================================================>------------------]  79%
  10168/12870 [===================================================================>------------------]  79%
  10169/12870 [===================================================================>------------------]  79%
  10170/12870 [===================================================================>------------------]  79%
  10171/12870 [===================================================================>------------------]  79%
  10172/12870 [===================================================================>------------------]  79%
  10173/12870 [===================================================================>------------------]  79%
  10174/12870 [===================================================================>------------------]  79%
  10175/12870 [===================================================================>------------------]  79%
  10176/12870 [===================================================================>------------------]  79%
  10177/12870 [===================================================================>------------------]  79%
  10178/12870 [===================================================================>------------------]  79%
  10179/12870 [===================================================================>------------------]  79%
  10180/12870 [===================================================================>------------------]  79%
  10181/12870 [===================================================================>------------------]  79%
  10182/12870 [===================================================================>------------------]  79%
  10183/12870 [===================================================================>------------------]  79%
  10184/12870 [===================================================================>------------------]  79%
  10185/12870 [===================================================================>------------------]  79%
  10186/12870 [===================================================================>------------------]  79%
  10187/12870 [===================================================================>------------------]  79%
  10188/12870 [===================================================================>------------------]  79%
  10189/12870 [===================================================================>------------------]  79%
  10190/12870 [===================================================================>------------------]  79%
  10191/12870 [===================================================================>------------------]  79%
  10192/12870 [===================================================================>------------------]  79%
  10193/12870 [===================================================================>------------------]  79%
  10194/12870 [===================================================================>------------------]  79%
  10195/12870 [===================================================================>------------------]  79%
  10196/12870 [===================================================================>------------------]  79%
  10197/12870 [===================================================================>------------------]  79%
  10198/12870 [===================================================================>------------------]  79%
  10199/12870 [===================================================================>------------------]  79%
  10200/12870 [===================================================================>------------------]  79%
  10201/12870 [===================================================================>------------------]  79%
  10202/12870 [===================================================================>------------------]  79%
  10203/12870 [===================================================================>------------------]  79%
  10204/12870 [===================================================================>------------------]  79%
  10205/12870 [===================================================================>------------------]  79%
  10206/12870 [===================================================================>------------------]  79%
  10207/12870 [===================================================================>------------------]  79%
  10208/12870 [===================================================================>------------------]  79%
  10209/12870 [===================================================================>------------------]  79%
  10210/12870 [===================================================================>------------------]  79%
  10211/12870 [===================================================================>------------------]  79%
  10212/12870 [===================================================================>------------------]  79%
  10213/12870 [===================================================================>------------------]  79%
  10214/12870 [===================================================================>------------------]  79%
  10215/12870 [===================================================================>------------------]  79%
  10216/12870 [===================================================================>------------------]  79%
  10217/12870 [===================================================================>------------------]  79%
  10218/12870 [===================================================================>------------------]  79%
  10219/12870 [===================================================================>------------------]  79%
  10220/12870 [===================================================================>------------------]  79%
  10221/12870 [===================================================================>------------------]  79%
  10222/12870 [===================================================================>------------------]  79%
  10223/12870 [===================================================================>------------------]  79%
  10224/12870 [===================================================================>------------------]  79%
  10225/12870 [===================================================================>------------------]  79%
  10226/12870 [===================================================================>------------------]  79%
  10227/12870 [===================================================================>------------------]  79%
  10228/12870 [===================================================================>------------------]  79%
  10229/12870 [===================================================================>------------------]  79%
  10230/12870 [===================================================================>------------------]  79%
  10231/12870 [===================================================================>------------------]  79%
  10232/12870 [===================================================================>------------------]  80%
  10233/12870 [===================================================================>------------------]  80%
  10234/12870 [===================================================================>------------------]  80%
  10235/12870 [===================================================================>------------------]  80%
  10236/12870 [===================================================================>------------------]  80%
  10237/12870 [===================================================================>------------------]  80%
  10238/12870 [===================================================================>------------------]  80%
  10239/12870 [===================================================================>------------------]  80%
  10240/12870 [===================================================================>------------------]  80%
  10241/12870 [===================================================================>------------------]  80%
  10242/12870 [===================================================================>------------------]  80%
  10243/12870 [===================================================================>------------------]  80%
  10244/12870 [===================================================================>------------------]  80%
  10245/12870 [===================================================================>------------------]  80%
  10246/12870 [===================================================================>------------------]  80%
  10247/12870 [===================================================================>------------------]  80%
  10248/12870 [===================================================================>------------------]  80%
  10249/12870 [===================================================================>------------------]  80%
  10250/12870 [===================================================================>------------------]  80%
  10251/12870 [===================================================================>------------------]  80%
  10252/12870 [====================================================================>-----------------]  80%
  10253/12870 [====================================================================>-----------------]  80%
  10254/12870 [====================================================================>-----------------]  80%
  10255/12870 [====================================================================>-----------------]  80%
  10256/12870 [====================================================================>-----------------]  80%
  10257/12870 [====================================================================>-----------------]  80%
  10258/12870 [====================================================================>-----------------]  80%
  10259/12870 [====================================================================>-----------------]  80%
  10260/12870 [====================================================================>-----------------]  80%
  10261/12870 [====================================================================>-----------------]  80%
  10262/12870 [====================================================================>-----------------]  80%
  10263/12870 [====================================================================>-----------------]  80%
  10264/12870 [====================================================================>-----------------]  80%
  10265/12870 [====================================================================>-----------------]  80%
  10266/12870 [====================================================================>-----------------]  80%
  10267/12870 [====================================================================>-----------------]  80%
  10268/12870 [====================================================================>-----------------]  80%
  10269/12870 [====================================================================>-----------------]  80%
  10270/12870 [====================================================================>-----------------]  80%
  10271/12870 [====================================================================>-----------------]  80%
  10272/12870 [====================================================================>-----------------]  80%
  10273/12870 [====================================================================>-----------------]  80%
  10274/12870 [====================================================================>-----------------]  80%
  10275/12870 [====================================================================>-----------------]  80%
  10276/12870 [====================================================================>-----------------]  80%
  10277/12870 [====================================================================>-----------------]  80%
  10278/12870 [====================================================================>-----------------]  80%
  10279/12870 [====================================================================>-----------------]  80%
  10280/12870 [====================================================================>-----------------]  80%
  10281/12870 [====================================================================>-----------------]  80%
  10282/12870 [====================================================================>-----------------]  80%
  10283/12870 [====================================================================>-----------------]  80%
  10284/12870 [====================================================================>-----------------]  80%
  10285/12870 [====================================================================>-----------------]  80%
  10286/12870 [====================================================================>-----------------]  80%
  10287/12870 [====================================================================>-----------------]  80%
  10288/12870 [====================================================================>-----------------]  80%
  10289/12870 [====================================================================>-----------------]  80%
  10290/12870 [====================================================================>-----------------]  80%
  10291/12870 [====================================================================>-----------------]  80%
  10292/12870 [====================================================================>-----------------]  80%
  10293/12870 [====================================================================>-----------------]  80%
  10294/12870 [====================================================================>-----------------]  80%
  10295/12870 [====================================================================>-----------------]  80%
  10296/12870 [====================================================================>-----------------]  80%
  10297/12870 [====================================================================>-----------------]  80%
  10298/12870 [====================================================================>-----------------]  80%
  10299/12870 [====================================================================>-----------------]  80%
  10300/12870 [====================================================================>-----------------]  80%
  10301/12870 [====================================================================>-----------------]  80%
  10302/12870 [====================================================================>-----------------]  80%
  10303/12870 [====================================================================>-----------------]  80%
  10304/12870 [====================================================================>-----------------]  80%
  10305/12870 [====================================================================>-----------------]  80%
  10306/12870 [====================================================================>-----------------]  80%
  10307/12870 [====================================================================>-----------------]  80%
  10308/12870 [====================================================================>-----------------]  80%
  10309/12870 [====================================================================>-----------------]  80%
  10310/12870 [====================================================================>-----------------]  80%
  10311/12870 [====================================================================>-----------------]  80%
  10312/12870 [====================================================================>-----------------]  80%
  10313/12870 [====================================================================>-----------------]  80%
  10314/12870 [====================================================================>-----------------]  80%
  10315/12870 [====================================================================>-----------------]  80%
  10316/12870 [====================================================================>-----------------]  80%
  10317/12870 [====================================================================>-----------------]  80%
  10318/12870 [====================================================================>-----------------]  80%
  10319/12870 [====================================================================>-----------------]  80%
  10320/12870 [====================================================================>-----------------]  80%
  10321/12870 [====================================================================>-----------------]  80%
  10322/12870 [====================================================================>-----------------]  80%
  10323/12870 [====================================================================>-----------------]  80%
  10324/12870 [====================================================================>-----------------]  80%
  10325/12870 [====================================================================>-----------------]  80%
  10326/12870 [====================================================================>-----------------]  80%
  10327/12870 [====================================================================>-----------------]  80%
  10328/12870 [====================================================================>-----------------]  80%
  10329/12870 [====================================================================>-----------------]  80%
  10330/12870 [====================================================================>-----------------]  80%
  10331/12870 [====================================================================>-----------------]  80%
  10332/12870 [====================================================================>-----------------]  80%
  10333/12870 [====================================================================>-----------------]  80%
  10334/12870 [====================================================================>-----------------]  80%
  10335/12870 [====================================================================>-----------------]  80%
  10336/12870 [====================================================================>-----------------]  80%
  10337/12870 [====================================================================>-----------------]  80%
  10338/12870 [====================================================================>-----------------]  80%
  10339/12870 [====================================================================>-----------------]  80%
  10340/12870 [====================================================================>-----------------]  80%
  10341/12870 [====================================================================>-----------------]  80%
  10342/12870 [====================================================================>-----------------]  80%
  10343/12870 [====================================================================>-----------------]  80%
  10344/12870 [====================================================================>-----------------]  80%
  10345/12870 [====================================================================>-----------------]  80%
  10346/12870 [====================================================================>-----------------]  80%
  10347/12870 [====================================================================>-----------------]  80%
  10348/12870 [====================================================================>-----------------]  80%
  10349/12870 [====================================================================>-----------------]  80%
  10350/12870 [====================================================================>-----------------]  80%
  10351/12870 [====================================================================>-----------------]  80%
  10352/12870 [====================================================================>-----------------]  80%
  10353/12870 [====================================================================>-----------------]  80%
  10354/12870 [====================================================================>-----------------]  80%
  10355/12870 [====================================================================>-----------------]  80%
  10356/12870 [====================================================================>-----------------]  80%
  10357/12870 [====================================================================>-----------------]  80%
  10358/12870 [====================================================================>-----------------]  80%
  10359/12870 [====================================================================>-----------------]  80%
  10360/12870 [====================================================================>-----------------]  80%
  10361/12870 [====================================================================>-----------------]  81%
  10362/12870 [====================================================================>-----------------]  81%
  10363/12870 [====================================================================>-----------------]  81%
  10364/12870 [====================================================================>-----------------]  81%
  10365/12870 [====================================================================>-----------------]  81%
  10366/12870 [====================================================================>-----------------]  81%
  10367/12870 [====================================================================>-----------------]  81%
  10368/12870 [====================================================================>-----------------]  81%
  10369/12870 [====================================================================>-----------------]  81%
  10370/12870 [====================================================================>-----------------]  81%
  10371/12870 [====================================================================>-----------------]  81%
  10372/12870 [====================================================================>-----------------]  81%
  10373/12870 [====================================================================>-----------------]  81%
  10374/12870 [====================================================================>-----------------]  81%
  10375/12870 [====================================================================>-----------------]  81%
  10376/12870 [====================================================================>-----------------]  81%
  10377/12870 [====================================================================>-----------------]  81%
  10378/12870 [====================================================================>-----------------]  81%
  10379/12870 [====================================================================>-----------------]  81%
  10380/12870 [====================================================================>-----------------]  81%
  10381/12870 [====================================================================>-----------------]  81%
  10382/12870 [====================================================================>-----------------]  81%
  10383/12870 [====================================================================>-----------------]  81%
  10384/12870 [====================================================================>-----------------]  81%
  10385/12870 [====================================================================>-----------------]  81%
  10386/12870 [====================================================================>-----------------]  81%
  10387/12870 [====================================================================>-----------------]  81%
  10388/12870 [====================================================================>-----------------]  81%
  10389/12870 [====================================================================>-----------------]  81%
  10390/12870 [====================================================================>-----------------]  81%
  10391/12870 [====================================================================>-----------------]  81%
  10392/12870 [====================================================================>-----------------]  81%
  10393/12870 [====================================================================>-----------------]  81%
  10394/12870 [====================================================================>-----------------]  81%
  10395/12870 [====================================================================>-----------------]  81%
  10396/12870 [====================================================================>-----------------]  81%
  10397/12870 [====================================================================>-----------------]  81%
  10398/12870 [====================================================================>-----------------]  81%
  10399/12870 [====================================================================>-----------------]  81%
  10400/12870 [====================================================================>-----------------]  81%
  10401/12870 [=====================================================================>----------------]  81%
  10402/12870 [=====================================================================>----------------]  81%
  10403/12870 [=====================================================================>----------------]  81%
  10404/12870 [=====================================================================>----------------]  81%
  10405/12870 [=====================================================================>----------------]  81%
  10406/12870 [=====================================================================>----------------]  81%
  10407/12870 [=====================================================================>----------------]  81%
  10408/12870 [=====================================================================>----------------]  81%
  10409/12870 [=====================================================================>----------------]  81%
  10410/12870 [=====================================================================>----------------]  81%
  10411/12870 [=====================================================================>----------------]  81%
  10412/12870 [=====================================================================>----------------]  81%
  10413/12870 [=====================================================================>----------------]  81%
  10414/12870 [=====================================================================>----------------]  81%
  10415/12870 [=====================================================================>----------------]  81%
  10416/12870 [=====================================================================>----------------]  81%
  10417/12870 [=====================================================================>----------------]  81%
  10418/12870 [=====================================================================>----------------]  81%
  10419/12870 [=====================================================================>----------------]  81%
  10420/12870 [=====================================================================>----------------]  81%
  10421/12870 [=====================================================================>----------------]  81%
  10422/12870 [=====================================================================>----------------]  81%
  10423/12870 [=====================================================================>----------------]  81%
  10424/12870 [=====================================================================>----------------]  81%
  10425/12870 [=====================================================================>----------------]  81%
  10426/12870 [=====================================================================>----------------]  81%
  10427/12870 [=====================================================================>----------------]  81%
  10428/12870 [=====================================================================>----------------]  81%
  10429/12870 [=====================================================================>----------------]  81%
  10430/12870 [=====================================================================>----------------]  81%
  10431/12870 [=====================================================================>----------------]  81%
  10432/12870 [=====================================================================>----------------]  81%
  10433/12870 [=====================================================================>----------------]  81%
  10434/12870 [=====================================================================>----------------]  81%
  10435/12870 [=====================================================================>----------------]  81%
  10436/12870 [=====================================================================>----------------]  81%
  10437/12870 [=====================================================================>----------------]  81%
  10438/12870 [=====================================================================>----------------]  81%
  10439/12870 [=====================================================================>----------------]  81%
  10440/12870 [=====================================================================>----------------]  81%
  10441/12870 [=====================================================================>----------------]  81%
  10442/12870 [=====================================================================>----------------]  81%
  10443/12870 [=====================================================================>----------------]  81%
  10444/12870 [=====================================================================>----------------]  81%
  10445/12870 [=====================================================================>----------------]  81%
  10446/12870 [=====================================================================>----------------]  81%
  10447/12870 [=====================================================================>----------------]  81%
  10448/12870 [=====================================================================>----------------]  81%
  10449/12870 [=====================================================================>----------------]  81%
  10450/12870 [=====================================================================>----------------]  81%
  10451/12870 [=====================================================================>----------------]  81%
  10452/12870 [=====================================================================>----------------]  81%
  10453/12870 [=====================================================================>----------------]  81%
  10454/12870 [=====================================================================>----------------]  81%
  10455/12870 [=====================================================================>----------------]  81%
  10456/12870 [=====================================================================>----------------]  81%
  10457/12870 [=====================================================================>----------------]  81%
  10458/12870 [=====================================================================>----------------]  81%
  10459/12870 [=====================================================================>----------------]  81%
  10460/12870 [=====================================================================>----------------]  81%
  10461/12870 [=====================================================================>----------------]  81%
  10462/12870 [=====================================================================>----------------]  81%
  10463/12870 [=====================================================================>----------------]  81%
  10464/12870 [=====================================================================>----------------]  81%
  10465/12870 [=====================================================================>----------------]  81%
  10466/12870 [=====================================================================>----------------]  81%
  10467/12870 [=====================================================================>----------------]  81%
  10468/12870 [=====================================================================>----------------]  81%
  10469/12870 [=====================================================================>----------------]  81%
  10470/12870 [=====================================================================>----------------]  81%
  10471/12870 [=====================================================================>----------------]  81%
  10472/12870 [=====================================================================>----------------]  81%
  10473/12870 [=====================================================================>----------------]  81%
  10474/12870 [=====================================================================>----------------]  81%
  10475/12870 [=====================================================================>----------------]  81%
  10476/12870 [=====================================================================>----------------]  81%
  10477/12870 [=====================================================================>----------------]  81%
  10478/12870 [=====================================================================>----------------]  81%
  10479/12870 [=====================================================================>----------------]  81%
  10480/12870 [=====================================================================>----------------]  81%
  10481/12870 [=====================================================================>----------------]  81%
  10482/12870 [=====================================================================>----------------]  81%
  10483/12870 [=====================================================================>----------------]  81%
  10484/12870 [=====================================================================>----------------]  81%
  10485/12870 [=====================================================================>----------------]  81%
  10486/12870 [=====================================================================>----------------]  81%
  10487/12870 [=====================================================================>----------------]  81%
  10488/12870 [=====================================================================>----------------]  81%
  10489/12870 [=====================================================================>----------------]  81%
  10490/12870 [=====================================================================>----------------]  82%
  10491/12870 [=====================================================================>----------------]  82%
  10492/12870 [=====================================================================>----------------]  82%
  10493/12870 [=====================================================================>----------------]  82%
  10494/12870 [=====================================================================>----------------]  82%
  10495/12870 [=====================================================================>----------------]  82%
  10496/12870 [=====================================================================>----------------]  82%
  10497/12870 [=====================================================================>----------------]  82%
  10498/12870 [=====================================================================>----------------]  82%
  10499/12870 [=====================================================================>----------------]  82%
  10500/12870 [=====================================================================>----------------]  82%
  10501/12870 [=====================================================================>----------------]  82%
  10502/12870 [=====================================================================>----------------]  82%
  10503/12870 [=====================================================================>----------------]  82%
  10504/12870 [=====================================================================>----------------]  82%
  10505/12870 [=====================================================================>----------------]  82%
  10506/12870 [=====================================================================>----------------]  82%
  10507/12870 [=====================================================================>----------------]  82%
  10508/12870 [=====================================================================>----------------]  82%
  10509/12870 [=====================================================================>----------------]  82%
  10510/12870 [=====================================================================>----------------]  82%
  10511/12870 [=====================================================================>----------------]  82%
  10512/12870 [=====================================================================>----------------]  82%
  10513/12870 [=====================================================================>----------------]  82%
  10514/12870 [=====================================================================>----------------]  82%
  10515/12870 [=====================================================================>----------------]  82%
  10516/12870 [=====================================================================>----------------]  82%
  10517/12870 [=====================================================================>----------------]  82%
  10518/12870 [=====================================================================>----------------]  82%
  10519/12870 [=====================================================================>----------------]  82%
  10520/12870 [=====================================================================>----------------]  82%
  10521/12870 [=====================================================================>----------------]  82%
  10522/12870 [=====================================================================>----------------]  82%
  10523/12870 [=====================================================================>----------------]  82%
  10524/12870 [=====================================================================>----------------]  82%
  10525/12870 [=====================================================================>----------------]  82%
  10526/12870 [=====================================================================>----------------]  82%
  10527/12870 [=====================================================================>----------------]  82%
  10528/12870 [=====================================================================>----------------]  82%
  10529/12870 [=====================================================================>----------------]  82%
  10530/12870 [=====================================================================>----------------]  82%
  10531/12870 [=====================================================================>----------------]  82%
  10532/12870 [=====================================================================>----------------]  82%
  10533/12870 [=====================================================================>----------------]  82%
  10534/12870 [=====================================================================>----------------]  82%
  10535/12870 [=====================================================================>----------------]  82%
  10536/12870 [=====================================================================>----------------]  82%
  10537/12870 [=====================================================================>----------------]  82%
  10538/12870 [=====================================================================>----------------]  82%
  10539/12870 [=====================================================================>----------------]  82%
  10540/12870 [=====================================================================>----------------]  82%
  10541/12870 [=====================================================================>----------------]  82%
  10542/12870 [=====================================================================>----------------]  82%
  10543/12870 [=====================================================================>----------------]  82%
  10544/12870 [=====================================================================>----------------]  82%
  10545/12870 [=====================================================================>----------------]  82%
  10546/12870 [=====================================================================>----------------]  82%
  10547/12870 [=====================================================================>----------------]  82%
  10548/12870 [=====================================================================>----------------]  82%
  10549/12870 [=====================================================================>----------------]  82%
  10550/12870 [=====================================================================>----------------]  82%
  10551/12870 [======================================================================>---------------]  82%
  10552/12870 [======================================================================>---------------]  82%
  10553/12870 [======================================================================>---------------]  82%
  10554/12870 [======================================================================>---------------]  82%
  10555/12870 [======================================================================>---------------]  82%
  10556/12870 [======================================================================>---------------]  82%
  10557/12870 [======================================================================>---------------]  82%
  10558/12870 [======================================================================>---------------]  82%
  10559/12870 [======================================================================>---------------]  82%
  10560/12870 [======================================================================>---------------]  82%
  10561/12870 [======================================================================>---------------]  82%
  10562/12870 [======================================================================>---------------]  82%
  10563/12870 [======================================================================>---------------]  82%
  10564/12870 [======================================================================>---------------]  82%
  10565/12870 [======================================================================>---------------]  82%
  10566/12870 [======================================================================>---------------]  82%
  10567/12870 [======================================================================>---------------]  82%
  10568/12870 [======================================================================>---------------]  82%
  10569/12870 [======================================================================>---------------]  82%
  10570/12870 [======================================================================>---------------]  82%
  10571/12870 [======================================================================>---------------]  82%
  10572/12870 [======================================================================>---------------]  82%
  10573/12870 [======================================================================>---------------]  82%
  10574/12870 [======================================================================>---------------]  82%
  10575/12870 [======================================================================>---------------]  82%
  10576/12870 [======================================================================>---------------]  82%
  10577/12870 [======================================================================>---------------]  82%
  10578/12870 [======================================================================>---------------]  82%
  10579/12870 [======================================================================>---------------]  82%
  10580/12870 [======================================================================>---------------]  82%
  10581/12870 [======================================================================>---------------]  82%
  10582/12870 [======================================================================>---------------]  82%
  10583/12870 [======================================================================>---------------]  82%
  10584/12870 [======================================================================>---------------]  82%
  10585/12870 [======================================================================>---------------]  82%
  10586/12870 [======================================================================>---------------]  82%
  10587/12870 [======================================================================>---------------]  82%
  10588/12870 [======================================================================>---------------]  82%
  10589/12870 [======================================================================>---------------]  82%
  10590/12870 [======================================================================>---------------]  82%
  10591/12870 [======================================================================>---------------]  82%
  10592/12870 [======================================================================>---------------]  82%
  10593/12870 [======================================================================>---------------]  82%
  10594/12870 [======================================================================>---------------]  82%
  10595/12870 [======================================================================>---------------]  82%
  10596/12870 [======================================================================>---------------]  82%
  10597/12870 [======================================================================>---------------]  82%
  10598/12870 [======================================================================>---------------]  82%
  10599/12870 [======================================================================>---------------]  82%
  10600/12870 [======================================================================>---------------]  82%
  10601/12870 [======================================================================>---------------]  82%
  10602/12870 [======================================================================>---------------]  82%
  10603/12870 [======================================================================>---------------]  82%
  10604/12870 [======================================================================>---------------]  82%
  10605/12870 [======================================================================>---------------]  82%
  10606/12870 [======================================================================>---------------]  82%
  10607/12870 [======================================================================>---------------]  82%
  10608/12870 [======================================================================>---------------]  82%
  10609/12870 [======================================================================>---------------]  82%
  10610/12870 [======================================================================>---------------]  82%
  10611/12870 [======================================================================>---------------]  82%
  10612/12870 [======================================================================>---------------]  82%
  10613/12870 [======================================================================>---------------]  82%
  10614/12870 [======================================================================>---------------]  82%
  10615/12870 [======================================================================>---------------]  82%
  10616/12870 [======================================================================>---------------]  82%
  10617/12870 [======================================================================>---------------]  82%
  10618/12870 [======================================================================>---------------]  83%
  10619/12870 [======================================================================>---------------]  83%
  10620/12870 [======================================================================>---------------]  83%
  10621/12870 [======================================================================>---------------]  83%
  10622/12870 [======================================================================>---------------]  83%
  10623/12870 [======================================================================>---------------]  83%
  10624/12870 [======================================================================>---------------]  83%
  10625/12870 [======================================================================>---------------]  83%
  10626/12870 [======================================================================>---------------]  83%
  10627/12870 [======================================================================>---------------]  83%
  10628/12870 [======================================================================>---------------]  83%
  10629/12870 [======================================================================>---------------]  83%
  10630/12870 [======================================================================>---------------]  83%
  10631/12870 [======================================================================>---------------]  83%
  10632/12870 [======================================================================>---------------]  83%
  10633/12870 [======================================================================>---------------]  83%
  10634/12870 [======================================================================>---------------]  83%
  10635/12870 [======================================================================>---------------]  83%
  10636/12870 [======================================================================>---------------]  83%
  10637/12870 [======================================================================>---------------]  83%
  10638/12870 [======================================================================>---------------]  83%
  10639/12870 [======================================================================>---------------]  83%
  10640/12870 [======================================================================>---------------]  83%
  10641/12870 [======================================================================>---------------]  83%
  10642/12870 [======================================================================>---------------]  83%
  10643/12870 [======================================================================>---------------]  83%
  10644/12870 [======================================================================>---------------]  83%
  10645/12870 [======================================================================>---------------]  83%
  10646/12870 [======================================================================>---------------]  83%
  10647/12870 [======================================================================>---------------]  83%
  10648/12870 [======================================================================>---------------]  83%
  10649/12870 [======================================================================>---------------]  83%
  10650/12870 [======================================================================>---------------]  83%
  10651/12870 [======================================================================>---------------]  83%
  10652/12870 [======================================================================>---------------]  83%
  10653/12870 [======================================================================>---------------]  83%
  10654/12870 [======================================================================>---------------]  83%
  10655/12870 [======================================================================>---------------]  83%
  10656/12870 [======================================================================>---------------]  83%
  10657/12870 [======================================================================>---------------]  83%
  10658/12870 [======================================================================>---------------]  83%
  10659/12870 [======================================================================>---------------]  83%
  10660/12870 [======================================================================>---------------]  83%
  10661/12870 [======================================================================>---------------]  83%
  10662/12870 [======================================================================>---------------]  83%
  10663/12870 [======================================================================>---------------]  83%
  10664/12870 [======================================================================>---------------]  83%
  10665/12870 [======================================================================>---------------]  83%
  10666/12870 [======================================================================>---------------]  83%
  10667/12870 [======================================================================>---------------]  83%
  10668/12870 [======================================================================>---------------]  83%
  10669/12870 [======================================================================>---------------]  83%
  10670/12870 [======================================================================>---------------]  83%
  10671/12870 [======================================================================>---------------]  83%
  10672/12870 [======================================================================>---------------]  83%
  10673/12870 [======================================================================>---------------]  83%
  10674/12870 [======================================================================>---------------]  83%
  10675/12870 [======================================================================>---------------]  83%
  10676/12870 [======================================================================>---------------]  83%
  10677/12870 [======================================================================>---------------]  83%
  10678/12870 [======================================================================>---------------]  83%
  10679/12870 [======================================================================>---------------]  83%
  10680/12870 [======================================================================>---------------]  83%
  10681/12870 [======================================================================>---------------]  83%
  10682/12870 [======================================================================>---------------]  83%
  10683/12870 [======================================================================>---------------]  83%
  10684/12870 [======================================================================>---------------]  83%
  10685/12870 [======================================================================>---------------]  83%
  10686/12870 [======================================================================>---------------]  83%
  10687/12870 [======================================================================>---------------]  83%
  10688/12870 [======================================================================>---------------]  83%
  10689/12870 [======================================================================>---------------]  83%
  10690/12870 [======================================================================>---------------]  83%
  10691/12870 [======================================================================>---------------]  83%
  10692/12870 [======================================================================>---------------]  83%
  10693/12870 [======================================================================>---------------]  83%
  10694/12870 [======================================================================>---------------]  83%
  10695/12870 [======================================================================>---------------]  83%
  10696/12870 [======================================================================>---------------]  83%
  10697/12870 [======================================================================>---------------]  83%
  10698/12870 [======================================================================>---------------]  83%
  10699/12870 [======================================================================>---------------]  83%
  10700/12870 [======================================================================>---------------]  83%
  10701/12870 [=======================================================================>--------------]  83%
  10702/12870 [=======================================================================>--------------]  83%
  10703/12870 [=======================================================================>--------------]  83%
  10704/12870 [=======================================================================>--------------]  83%
  10705/12870 [=======================================================================>--------------]  83%
  10706/12870 [=======================================================================>--------------]  83%
  10707/12870 [=======================================================================>--------------]  83%
  10708/12870 [=======================================================================>--------------]  83%
  10709/12870 [=======================================================================>--------------]  83%
  10710/12870 [=======================================================================>--------------]  83%
  10711/12870 [=======================================================================>--------------]  83%
  10712/12870 [=======================================================================>--------------]  83%
  10713/12870 [=======================================================================>--------------]  83%
  10714/12870 [=======================================================================>--------------]  83%
  10715/12870 [=======================================================================>--------------]  83%
  10716/12870 [=======================================================================>--------------]  83%
  10717/12870 [=======================================================================>--------------]  83%
  10718/12870 [=======================================================================>--------------]  83%
  10719/12870 [=======================================================================>--------------]  83%
  10720/12870 [=======================================================================>--------------]  83%
  10721/12870 [=======================================================================>--------------]  83%
  10722/12870 [=======================================================================>--------------]  83%
  10723/12870 [=======================================================================>--------------]  83%
  10724/12870 [=======================================================================>--------------]  83%
  10725/12870 [=======================================================================>--------------]  83%
  10726/12870 [=======================================================================>--------------]  83%
  10727/12870 [=======================================================================>--------------]  83%
  10728/12870 [=======================================================================>--------------]  83%
  10729/12870 [=======================================================================>--------------]  83%
  10730/12870 [=======================================================================>--------------]  83%
  10731/12870 [=======================================================================>--------------]  83%
  10732/12870 [=======================================================================>--------------]  83%
  10733/12870 [=======================================================================>--------------]  83%
  10734/12870 [=======================================================================>--------------]  83%
  10735/12870 [=======================================================================>--------------]  83%
  10736/12870 [=======================================================================>--------------]  83%
  10737/12870 [=======================================================================>--------------]  83%
  10738/12870 [=======================================================================>--------------]  83%
  10739/12870 [=======================================================================>--------------]  83%
  10740/12870 [=======================================================================>--------------]  83%
  10741/12870 [=======================================================================>--------------]  83%
  10742/12870 [=======================================================================>--------------]  83%
  10743/12870 [=======================================================================>--------------]  83%
  10744/12870 [=======================================================================>--------------]  83%
  10745/12870 [=======================================================================>--------------]  83%
  10746/12870 [=======================================================================>--------------]  83%
  10747/12870 [=======================================================================>--------------]  84%
  10748/12870 [=======================================================================>--------------]  84%
  10749/12870 [=======================================================================>--------------]  84%
  10750/12870 [=======================================================================>--------------]  84%
  10751/12870 [=======================================================================>--------------]  84%
  10752/12870 [=======================================================================>--------------]  84%
  10753/12870 [=======================================================================>--------------]  84%
  10754/12870 [=======================================================================>--------------]  84%
  10755/12870 [=======================================================================>--------------]  84%
  10756/12870 [=======================================================================>--------------]  84%
  10757/12870 [=======================================================================>--------------]  84%
  10758/12870 [=======================================================================>--------------]  84%
  10759/12870 [=======================================================================>--------------]  84%
  10760/12870 [=======================================================================>--------------]  84%
  10761/12870 [=======================================================================>--------------]  84%
  10762/12870 [=======================================================================>--------------]  84%
  10763/12870 [=======================================================================>--------------]  84%
  10764/12870 [=======================================================================>--------------]  84%
  10765/12870 [=======================================================================>--------------]  84%
  10766/12870 [=======================================================================>--------------]  84%
  10767/12870 [=======================================================================>--------------]  84%
  10768/12870 [=======================================================================>--------------]  84%
  10769/12870 [=======================================================================>--------------]  84%
  10770/12870 [=======================================================================>--------------]  84%
  10771/12870 [=======================================================================>--------------]  84%
  10772/12870 [=======================================================================>--------------]  84%
  10773/12870 [=======================================================================>--------------]  84%
  10774/12870 [=======================================================================>--------------]  84%
  10775/12870 [=======================================================================>--------------]  84%
  10776/12870 [=======================================================================>--------------]  84%
  10777/12870 [=======================================================================>--------------]  84%
  10778/12870 [=======================================================================>--------------]  84%
  10779/12870 [=======================================================================>--------------]  84%
  10780/12870 [=======================================================================>--------------]  84%
  10781/12870 [=======================================================================>--------------]  84%
  10782/12870 [=======================================================================>--------------]  84%
  10783/12870 [=======================================================================>--------------]  84%
  10784/12870 [=======================================================================>--------------]  84%
  10785/12870 [=======================================================================>--------------]  84%
  10786/12870 [=======================================================================>--------------]  84%
  10787/12870 [=======================================================================>--------------]  84%
  10788/12870 [=======================================================================>--------------]  84%
  10789/12870 [=======================================================================>--------------]  84%
  10790/12870 [=======================================================================>--------------]  84%
  10791/12870 [=======================================================================>--------------]  84%
  10792/12870 [=======================================================================>--------------]  84%
  10793/12870 [=======================================================================>--------------]  84%
  10794/12870 [=======================================================================>--------------]  84%
  10795/12870 [=======================================================================>--------------]  84%
  10796/12870 [=======================================================================>--------------]  84%
  10797/12870 [=======================================================================>--------------]  84%
  10798/12870 [=======================================================================>--------------]  84%
  10799/12870 [=======================================================================>--------------]  84%
  10800/12870 [=======================================================================>--------------]  84%
  10801/12870 [=======================================================================>--------------]  84%
  10802/12870 [=======================================================================>--------------]  84%
  10803/12870 [=======================================================================>--------------]  84%
  10804/12870 [=======================================================================>--------------]  84%
  10805/12870 [=======================================================================>--------------]  84%
  10806/12870 [=======================================================================>--------------]  84%
  10807/12870 [=======================================================================>--------------]  84%
  10808/12870 [=======================================================================>--------------]  84%
  10809/12870 [=======================================================================>--------------]  84%
  10810/12870 [=======================================================================>--------------]  84%
  10811/12870 [=======================================================================>--------------]  84%
  10812/12870 [=======================================================================>--------------]  84%
  10813/12870 [=======================================================================>--------------]  84%
  10814/12870 [=======================================================================>--------------]  84%
  10815/12870 [=======================================================================>--------------]  84%
  10816/12870 [=======================================================================>--------------]  84%
  10817/12870 [=======================================================================>--------------]  84%
  10818/12870 [=======================================================================>--------------]  84%
  10819/12870 [=======================================================================>--------------]  84%
  10820/12870 [=======================================================================>--------------]  84%
  10821/12870 [=======================================================================>--------------]  84%
  10822/12870 [=======================================================================>--------------]  84%
  10823/12870 [=======================================================================>--------------]  84%
  10824/12870 [=======================================================================>--------------]  84%
  10825/12870 [=======================================================================>--------------]  84%
  10826/12870 [=======================================================================>--------------]  84%
  10827/12870 [=======================================================================>--------------]  84%
  10828/12870 [=======================================================================>--------------]  84%
  10829/12870 [=======================================================================>--------------]  84%
  10830/12870 [=======================================================================>--------------]  84%
  10831/12870 [=======================================================================>--------------]  84%
  10832/12870 [=======================================================================>--------------]  84%
  10833/12870 [=======================================================================>--------------]  84%
  10834/12870 [=======================================================================>--------------]  84%
  10835/12870 [=======================================================================>--------------]  84%
  10836/12870 [=======================================================================>--------------]  84%
  10837/12870 [=======================================================================>--------------]  84%
  10838/12870 [=======================================================================>--------------]  84%
  10839/12870 [=======================================================================>--------------]  84%
  10840/12870 [=======================================================================>--------------]  84%
  10841/12870 [=======================================================================>--------------]  84%
  10842/12870 [=======================================================================>--------------]  84%
  10843/12870 [=======================================================================>--------------]  84%
  10844/12870 [=======================================================================>--------------]  84%
  10845/12870 [=======================================================================>--------------]  84%
  10846/12870 [=======================================================================>--------------]  84%
  10847/12870 [=======================================================================>--------------]  84%
  10848/12870 [=======================================================================>--------------]  84%
  10849/12870 [=======================================================================>--------------]  84%
  10850/12870 [========================================================================>-------------]  84%
  10851/12870 [========================================================================>-------------]  84%
  10852/12870 [========================================================================>-------------]  84%
  10853/12870 [========================================================================>-------------]  84%
  10854/12870 [========================================================================>-------------]  84%
  10855/12870 [========================================================================>-------------]  84%
  10856/12870 [========================================================================>-------------]  84%
  10857/12870 [========================================================================>-------------]  84%
  10858/12870 [========================================================================>-------------]  84%
  10859/12870 [========================================================================>-------------]  84%
  10860/12870 [========================================================================>-------------]  84%
  10861/12870 [========================================================================>-------------]  84%
  10862/12870 [========================================================================>-------------]  84%
  10863/12870 [========================================================================>-------------]  84%
  10864/12870 [========================================================================>-------------]  84%
  10865/12870 [========================================================================>-------------]  84%
  10866/12870 [========================================================================>-------------]  84%
  10867/12870 [========================================================================>-------------]  84%
  10868/12870 [========================================================================>-------------]  84%
  10869/12870 [========================================================================>-------------]  84%
  10870/12870 [========================================================================>-------------]  84%
  10871/12870 [========================================================================>-------------]  84%
  10872/12870 [========================================================================>-------------]  84%
  10873/12870 [========================================================================>-------------]  84%
  10874/12870 [========================================================================>-------------]  84%
  10875/12870 [========================================================================>-------------]  84%
  10876/12870 [========================================================================>-------------]  85%
  10877/12870 [========================================================================>-------------]  85%
  10878/12870 [========================================================================>-------------]  85%
  10879/12870 [========================================================================>-------------]  85%
  10880/12870 [========================================================================>-------------]  85%
  10881/12870 [========================================================================>-------------]  85%
  10882/12870 [========================================================================>-------------]  85%
  10883/12870 [========================================================================>-------------]  85%
  10884/12870 [========================================================================>-------------]  85%
  10885/12870 [========================================================================>-------------]  85%
  10886/12870 [========================================================================>-------------]  85%
  10887/12870 [========================================================================>-------------]  85%
  10888/12870 [========================================================================>-------------]  85%
  10889/12870 [========================================================================>-------------]  85%
  10890/12870 [========================================================================>-------------]  85%
  10891/12870 [========================================================================>-------------]  85%
  10892/12870 [========================================================================>-------------]  85%
  10893/12870 [========================================================================>-------------]  85%
  10894/12870 [========================================================================>-------------]  85%
  10895/12870 [========================================================================>-------------]  85%
  10896/12870 [========================================================================>-------------]  85%
  10897/12870 [========================================================================>-------------]  85%
  10898/12870 [========================================================================>-------------]  85%
  10899/12870 [========================================================================>-------------]  85%
  10900/12870 [========================================================================>-------------]  85%
  10901/12870 [========================================================================>-------------]  85%
  10902/12870 [========================================================================>-------------]  85%
  10903/12870 [========================================================================>-------------]  85%
  10904/12870 [========================================================================>-------------]  85%
  10905/12870 [========================================================================>-------------]  85%
  10906/12870 [========================================================================>-------------]  85%
  10907/12870 [========================================================================>-------------]  85%
  10908/12870 [========================================================================>-------------]  85%
  10909/12870 [========================================================================>-------------]  85%
  10910/12870 [========================================================================>-------------]  85%
  10911/12870 [========================================================================>-------------]  85%
  10912/12870 [========================================================================>-------------]  85%
  10913/12870 [========================================================================>-------------]  85%
  10914/12870 [========================================================================>-------------]  85%
  10915/12870 [========================================================================>-------------]  85%
  10916/12870 [========================================================================>-------------]  85%
  10917/12870 [========================================================================>-------------]  85%
  10918/12870 [========================================================================>-------------]  85%
  10919/12870 [========================================================================>-------------]  85%
  10920/12870 [========================================================================>-------------]  85%
  10921/12870 [========================================================================>-------------]  85%
  10922/12870 [========================================================================>-------------]  85%
  10923/12870 [========================================================================>-------------]  85%
  10924/12870 [========================================================================>-------------]  85%
  10925/12870 [========================================================================>-------------]  85%
  10926/12870 [========================================================================>-------------]  85%
  10927/12870 [========================================================================>-------------]  85%
  10928/12870 [========================================================================>-------------]  85%
  10929/12870 [========================================================================>-------------]  85%
  10930/12870 [========================================================================>-------------]  85%
  10931/12870 [========================================================================>-------------]  85%
  10932/12870 [========================================================================>-------------]  85%
  10933/12870 [========================================================================>-------------]  85%
  10934/12870 [========================================================================>-------------]  85%
  10935/12870 [========================================================================>-------------]  85%
  10936/12870 [========================================================================>-------------]  85%
  10937/12870 [========================================================================>-------------]  85%
  10938/12870 [========================================================================>-------------]  85%
  10939/12870 [========================================================================>-------------]  85%
  10940/12870 [========================================================================>-------------]  85%
  10941/12870 [========================================================================>-------------]  85%
  10942/12870 [========================================================================>-------------]  85%
  10943/12870 [========================================================================>-------------]  85%
  10944/12870 [========================================================================>-------------]  85%
  10945/12870 [========================================================================>-------------]  85%
  10946/12870 [========================================================================>-------------]  85%
  10947/12870 [========================================================================>-------------]  85%
  10948/12870 [========================================================================>-------------]  85%
  10949/12870 [========================================================================>-------------]  85%
  10950/12870 [========================================================================>-------------]  85%
  10951/12870 [========================================================================>-------------]  85%
  10952/12870 [========================================================================>-------------]  85%
  10953/12870 [========================================================================>-------------]  85%
  10954/12870 [========================================================================>-------------]  85%
  10955/12870 [========================================================================>-------------]  85%
  10956/12870 [========================================================================>-------------]  85%
  10957/12870 [========================================================================>-------------]  85%
  10958/12870 [========================================================================>-------------]  85%
  10959/12870 [========================================================================>-------------]  85%
  10960/12870 [========================================================================>-------------]  85%
  10961/12870 [========================================================================>-------------]  85%
  10962/12870 [========================================================================>-------------]  85%
  10963/12870 [========================================================================>-------------]  85%
  10964/12870 [========================================================================>-------------]  85%
  10965/12870 [========================================================================>-------------]  85%
  10966/12870 [========================================================================>-------------]  85%
  10967/12870 [========================================================================>-------------]  85%
  10968/12870 [========================================================================>-------------]  85%
  10969/12870 [========================================================================>-------------]  85%
  10970/12870 [========================================================================>-------------]  85%
  10971/12870 [========================================================================>-------------]  85%
  10972/12870 [========================================================================>-------------]  85%
  10973/12870 [========================================================================>-------------]  85%
  10974/12870 [========================================================================>-------------]  85%
  10975/12870 [========================================================================>-------------]  85%
  10976/12870 [========================================================================>-------------]  85%
  10977/12870 [========================================================================>-------------]  85%
  10978/12870 [========================================================================>-------------]  85%
  10979/12870 [========================================================================>-------------]  85%
  10980/12870 [========================================================================>-------------]  85%
  10981/12870 [========================================================================>-------------]  85%
  10982/12870 [========================================================================>-------------]  85%
  10983/12870 [========================================================================>-------------]  85%
  10984/12870 [========================================================================>-------------]  85%
  10985/12870 [========================================================================>-------------]  85%
  10986/12870 [========================================================================>-------------]  85%
  10987/12870 [========================================================================>-------------]  85%
  10988/12870 [========================================================================>-------------]  85%
  10989/12870 [========================================================================>-------------]  85%
  10990/12870 [========================================================================>-------------]  85%
  10991/12870 [========================================================================>-------------]  85%
  10992/12870 [========================================================================>-------------]  85%
  10993/12870 [========================================================================>-------------]  85%
  10994/12870 [========================================================================>-------------]  85%
  10995/12870 [========================================================================>-------------]  85%
  10996/12870 [========================================================================>-------------]  85%
  10997/12870 [========================================================================>-------------]  85%
  10998/12870 [========================================================================>-------------]  85%
  10999/12870 [========================================================================>-------------]  85%
  11000/12870 [=========================================================================>------------]  85%
  11001/12870 [=========================================================================>------------]  85%
  11002/12870 [=========================================================================>------------]  85%
  11003/12870 [=========================================================================>------------]  85%
  11004/12870 [=========================================================================>------------]  86%
  11005/12870 [=========================================================================>------------]  86%
  11006/12870 [=========================================================================>------------]  86%
  11007/12870 [=========================================================================>------------]  86%
  11008/12870 [=========================================================================>------------]  86%
  11009/12870 [=========================================================================>------------]  86%
  11010/12870 [=========================================================================>------------]  86%
  11011/12870 [=========================================================================>------------]  86%
  11012/12870 [=========================================================================>------------]  86%
  11013/12870 [=========================================================================>------------]  86%
  11014/12870 [=========================================================================>------------]  86%
  11015/12870 [=========================================================================>------------]  86%
  11016/12870 [=========================================================================>------------]  86%
  11017/12870 [=========================================================================>------------]  86%
  11018/12870 [=========================================================================>------------]  86%
  11019/12870 [=========================================================================>------------]  86%
  11020/12870 [=========================================================================>------------]  86%
  11021/12870 [=========================================================================>------------]  86%
  11022/12870 [=========================================================================>------------]  86%
  11023/12870 [=========================================================================>------------]  86%
  11024/12870 [=========================================================================>------------]  86%
  11025/12870 [=========================================================================>------------]  86%
  11026/12870 [=========================================================================>------------]  86%
  11027/12870 [=========================================================================>------------]  86%
  11028/12870 [=========================================================================>------------]  86%
  11029/12870 [=========================================================================>------------]  86%
  11030/12870 [=========================================================================>------------]  86%
  11031/12870 [=========================================================================>------------]  86%
  11032/12870 [=========================================================================>------------]  86%
  11033/12870 [=========================================================================>------------]  86%
  11034/12870 [=========================================================================>------------]  86%
  11035/12870 [=========================================================================>------------]  86%
  11036/12870 [=========================================================================>------------]  86%
  11037/12870 [=========================================================================>------------]  86%
  11038/12870 [=========================================================================>------------]  86%
  11039/12870 [=========================================================================>------------]  86%
  11040/12870 [=========================================================================>------------]  86%
  11041/12870 [=========================================================================>------------]  86%
  11042/12870 [=========================================================================>------------]  86%
  11043/12870 [=========================================================================>------------]  86%
  11044/12870 [=========================================================================>------------]  86%
  11045/12870 [=========================================================================>------------]  86%
  11046/12870 [=========================================================================>------------]  86%
  11047/12870 [=========================================================================>------------]  86%
  11048/12870 [=========================================================================>------------]  86%
  11049/12870 [=========================================================================>------------]  86%
  11050/12870 [=========================================================================>------------]  86%
  11051/12870 [=========================================================================>------------]  86%
  11052/12870 [=========================================================================>------------]  86%
  11053/12870 [=========================================================================>------------]  86%
  11054/12870 [=========================================================================>------------]  86%
  11055/12870 [=========================================================================>------------]  86%
  11056/12870 [=========================================================================>------------]  86%
  11057/12870 [=========================================================================>------------]  86%
  11058/12870 [=========================================================================>------------]  86%
  11059/12870 [=========================================================================>------------]  86%
  11060/12870 [=========================================================================>------------]  86%
  11061/12870 [=========================================================================>------------]  86%
  11062/12870 [=========================================================================>------------]  86%
  11063/12870 [=========================================================================>------------]  86%
  11064/12870 [=========================================================================>------------]  86%
  11065/12870 [=========================================================================>------------]  86%
  11066/12870 [=========================================================================>------------]  86%
  11067/12870 [=========================================================================>------------]  86%
  11068/12870 [=========================================================================>------------]  86%
  11069/12870 [=========================================================================>------------]  86%
  11070/12870 [=========================================================================>------------]  86%
  11071/12870 [=========================================================================>------------]  86%
  11072/12870 [=========================================================================>------------]  86%
  11073/12870 [=========================================================================>------------]  86%
  11074/12870 [=========================================================================>------------]  86%
  11075/12870 [=========================================================================>------------]  86%
  11076/12870 [=========================================================================>------------]  86%
  11077/12870 [=========================================================================>------------]  86%
  11078/12870 [=========================================================================>------------]  86%
  11079/12870 [=========================================================================>------------]  86%
  11080/12870 [=========================================================================>------------]  86%
  11081/12870 [=========================================================================>------------]  86%
  11082/12870 [=========================================================================>------------]  86%
  11083/12870 [=========================================================================>------------]  86%
  11084/12870 [=========================================================================>------------]  86%
  11085/12870 [=========================================================================>------------]  86%
  11086/12870 [=========================================================================>------------]  86%
  11087/12870 [=========================================================================>------------]  86%
  11088/12870 [=========================================================================>------------]  86%
  11089/12870 [=========================================================================>------------]  86%
  11090/12870 [=========================================================================>------------]  86%
  11091/12870 [=========================================================================>------------]  86%
  11092/12870 [=========================================================================>------------]  86%
  11093/12870 [=========================================================================>------------]  86%
  11094/12870 [=========================================================================>------------]  86%
  11095/12870 [=========================================================================>------------]  86%
  11096/12870 [=========================================================================>------------]  86%
  11097/12870 [=========================================================================>------------]  86%
  11098/12870 [=========================================================================>------------]  86%
  11099/12870 [=========================================================================>------------]  86%
  11100/12870 [=========================================================================>------------]  86%
  11101/12870 [=========================================================================>------------]  86%
  11102/12870 [=========================================================================>------------]  86%
  11103/12870 [=========================================================================>------------]  86%
  11104/12870 [=========================================================================>------------]  86%
  11105/12870 [=========================================================================>------------]  86%
  11106/12870 [=========================================================================>------------]  86%
  11107/12870 [=========================================================================>------------]  86%
  11108/12870 [=========================================================================>------------]  86%
  11109/12870 [=========================================================================>------------]  86%
  11110/12870 [=========================================================================>------------]  86%
  11111/12870 [=========================================================================>------------]  86%
  11112/12870 [=========================================================================>------------]  86%
  11113/12870 [=========================================================================>------------]  86%
  11114/12870 [=========================================================================>------------]  86%
  11115/12870 [=========================================================================>------------]  86%
  11116/12870 [=========================================================================>------------]  86%
  11117/12870 [=========================================================================>------------]  86%
  11118/12870 [=========================================================================>------------]  86%
  11119/12870 [=========================================================================>------------]  86%
  11120/12870 [=========================================================================>------------]  86%
  11121/12870 [=========================================================================>------------]  86%
  11122/12870 [=========================================================================>------------]  86%
  11123/12870 [=========================================================================>------------]  86%
  11124/12870 [=========================================================================>------------]  86%
  11125/12870 [=========================================================================>------------]  86%
  11126/12870 [=========================================================================>------------]  86%
  11127/12870 [=========================================================================>------------]  86%
  11128/12870 [=========================================================================>------------]  86%
  11129/12870 [=========================================================================>------------]  86%
  11130/12870 [=========================================================================>------------]  86%
  11131/12870 [=========================================================================>------------]  86%
  11132/12870 [=========================================================================>------------]  86%
  11133/12870 [=========================================================================>------------]  87%
  11134/12870 [=========================================================================>------------]  87%
  11135/12870 [=========================================================================>------------]  87%
  11136/12870 [=========================================================================>------------]  87%
  11137/12870 [=========================================================================>------------]  87%
  11138/12870 [=========================================================================>------------]  87%
  11139/12870 [=========================================================================>------------]  87%
  11140/12870 [=========================================================================>------------]  87%
  11141/12870 [=========================================================================>------------]  87%
  11142/12870 [=========================================================================>------------]  87%
  11143/12870 [=========================================================================>------------]  87%
  11144/12870 [=========================================================================>------------]  87%
  11145/12870 [=========================================================================>------------]  87%
  11146/12870 [=========================================================================>------------]  87%
  11147/12870 [=========================================================================>------------]  87%
  11148/12870 [=========================================================================>------------]  87%
  11149/12870 [=========================================================================>------------]  87%
  11150/12870 [==========================================================================>-----------]  87%
  11151/12870 [==========================================================================>-----------]  87%
  11152/12870 [==========================================================================>-----------]  87%
  11153/12870 [==========================================================================>-----------]  87%
  11154/12870 [==========================================================================>-----------]  87%
  11155/12870 [==========================================================================>-----------]  87%
  11156/12870 [==========================================================================>-----------]  87%
  11157/12870 [==========================================================================>-----------]  87%
  11158/12870 [==========================================================================>-----------]  87%
  11159/12870 [==========================================================================>-----------]  87%
  11160/12870 [==========================================================================>-----------]  87%
  11161/12870 [==========================================================================>-----------]  87%
  11162/12870 [==========================================================================>-----------]  87%
  11163/12870 [==========================================================================>-----------]  87%
  11164/12870 [==========================================================================>-----------]  87%
  11165/12870 [==========================================================================>-----------]  87%
  11166/12870 [==========================================================================>-----------]  87%
  11167/12870 [==========================================================================>-----------]  87%
  11168/12870 [==========================================================================>-----------]  87%
  11169/12870 [==========================================================================>-----------]  87%
  11170/12870 [==========================================================================>-----------]  87%
  11171/12870 [==========================================================================>-----------]  87%
  11172/12870 [==========================================================================>-----------]  87%
  11173/12870 [==========================================================================>-----------]  87%
  11174/12870 [==========================================================================>-----------]  87%
  11175/12870 [==========================================================================>-----------]  87%
  11176/12870 [==========================================================================>-----------]  87%
  11177/12870 [==========================================================================>-----------]  87%
  11178/12870 [==========================================================================>-----------]  87%
  11179/12870 [==========================================================================>-----------]  87%
  11180/12870 [==========================================================================>-----------]  87%
  11181/12870 [==========================================================================>-----------]  87%
  11182/12870 [==========================================================================>-----------]  87%
  11183/12870 [==========================================================================>-----------]  87%
  11184/12870 [==========================================================================>-----------]  87%
  11185/12870 [==========================================================================>-----------]  87%
  11186/12870 [==========================================================================>-----------]  87%
  11187/12870 [==========================================================================>-----------]  87%
  11188/12870 [==========================================================================>-----------]  87%
  11189/12870 [==========================================================================>-----------]  87%
  11190/12870 [==========================================================================>-----------]  87%
  11191/12870 [==========================================================================>-----------]  87%
  11192/12870 [==========================================================================>-----------]  87%
  11193/12870 [==========================================================================>-----------]  87%
  11194/12870 [==========================================================================>-----------]  87%
  11195/12870 [==========================================================================>-----------]  87%
  11196/12870 [==========================================================================>-----------]  87%
  11197/12870 [==========================================================================>-----------]  87%
  11198/12870 [==========================================================================>-----------]  87%
  11199/12870 [==========================================================================>-----------]  87%
  11200/12870 [==========================================================================>-----------]  87%
  11201/12870 [==========================================================================>-----------]  87%
  11202/12870 [==========================================================================>-----------]  87%
  11203/12870 [==========================================================================>-----------]  87%
  11204/12870 [==========================================================================>-----------]  87%
  11205/12870 [==========================================================================>-----------]  87%
  11206/12870 [==========================================================================>-----------]  87%
  11207/12870 [==========================================================================>-----------]  87%
  11208/12870 [==========================================================================>-----------]  87%
  11209/12870 [==========================================================================>-----------]  87%
  11210/12870 [==========================================================================>-----------]  87%
  11211/12870 [==========================================================================>-----------]  87%
  11212/12870 [==========================================================================>-----------]  87%
  11213/12870 [==========================================================================>-----------]  87%
  11214/12870 [==========================================================================>-----------]  87%
  11215/12870 [==========================================================================>-----------]  87%
  11216/12870 [==========================================================================>-----------]  87%
  11217/12870 [==========================================================================>-----------]  87%
  11218/12870 [==========================================================================>-----------]  87%
  11219/12870 [==========================================================================>-----------]  87%
  11220/12870 [==========================================================================>-----------]  87%
  11221/12870 [==========================================================================>-----------]  87%
  11222/12870 [==========================================================================>-----------]  87%
  11223/12870 [==========================================================================>-----------]  87%
  11224/12870 [==========================================================================>-----------]  87%
  11225/12870 [==========================================================================>-----------]  87%
  11226/12870 [==========================================================================>-----------]  87%
  11227/12870 [==========================================================================>-----------]  87%
  11228/12870 [==========================================================================>-----------]  87%
  11229/12870 [==========================================================================>-----------]  87%
  11230/12870 [==========================================================================>-----------]  87%
  11231/12870 [==========================================================================>-----------]  87%
  11232/12870 [==========================================================================>-----------]  87%
  11233/12870 [==========================================================================>-----------]  87%
  11234/12870 [==========================================================================>-----------]  87%
  11235/12870 [==========================================================================>-----------]  87%
  11236/12870 [==========================================================================>-----------]  87%
  11237/12870 [==========================================================================>-----------]  87%
  11238/12870 [==========================================================================>-----------]  87%
  11239/12870 [==========================================================================>-----------]  87%
  11240/12870 [==========================================================================>-----------]  87%
  11241/12870 [==========================================================================>-----------]  87%
  11242/12870 [==========================================================================>-----------]  87%
  11243/12870 [==========================================================================>-----------]  87%
  11244/12870 [==========================================================================>-----------]  87%
  11245/12870 [==========================================================================>-----------]  87%
  11246/12870 [==========================================================================>-----------]  87%
  11247/12870 [==========================================================================>-----------]  87%
  11248/12870 [==========================================================================>-----------]  87%
  11249/12870 [==========================================================================>-----------]  87%
  11250/12870 [==========================================================================>-----------]  87%
  11251/12870 [==========================================================================>-----------]  87%
  11252/12870 [==========================================================================>-----------]  87%
  11253/12870 [==========================================================================>-----------]  87%
  11254/12870 [==========================================================================>-----------]  87%
  11255/12870 [==========================================================================>-----------]  87%
  11256/12870 [==========================================================================>-----------]  87%
  11257/12870 [==========================================================================>-----------]  87%
  11258/12870 [==========================================================================>-----------]  87%
  11259/12870 [==========================================================================>-----------]  87%
  11260/12870 [==========================================================================>-----------]  87%
  11261/12870 [==========================================================================>-----------]  87%
  11262/12870 [==========================================================================>-----------]  88%
  11263/12870 [==========================================================================>-----------]  88%
  11264/12870 [==========================================================================>-----------]  88%
  11265/12870 [==========================================================================>-----------]  88%
  11266/12870 [==========================================================================>-----------]  88%
  11267/12870 [==========================================================================>-----------]  88%
  11268/12870 [==========================================================================>-----------]  88%
  11269/12870 [==========================================================================>-----------]  88%
  11270/12870 [==========================================================================>-----------]  88%
  11271/12870 [==========================================================================>-----------]  88%
  11272/12870 [==========================================================================>-----------]  88%
  11273/12870 [==========================================================================>-----------]  88%
  11274/12870 [==========================================================================>-----------]  88%
  11275/12870 [==========================================================================>-----------]  88%
  11276/12870 [==========================================================================>-----------]  88%
  11277/12870 [==========================================================================>-----------]  88%
  11278/12870 [==========================================================================>-----------]  88%
  11279/12870 [==========================================================================>-----------]  88%
  11280/12870 [==========================================================================>-----------]  88%
  11281/12870 [==========================================================================>-----------]  88%
  11282/12870 [==========================================================================>-----------]  88%
  11283/12870 [==========================================================================>-----------]  88%
  11284/12870 [==========================================================================>-----------]  88%
  11285/12870 [==========================================================================>-----------]  88%
  11286/12870 [==========================================================================>-----------]  88%
  11287/12870 [==========================================================================>-----------]  88%
  11288/12870 [==========================================================================>-----------]  88%
  11289/12870 [==========================================================================>-----------]  88%
  11290/12870 [==========================================================================>-----------]  88%
  11291/12870 [==========================================================================>-----------]  88%
  11292/12870 [==========================================================================>-----------]  88%
  11293/12870 [==========================================================================>-----------]  88%
  11294/12870 [==========================================================================>-----------]  88%
  11295/12870 [==========================================================================>-----------]  88%
  11296/12870 [==========================================================================>-----------]  88%
  11297/12870 [==========================================================================>-----------]  88%
  11298/12870 [==========================================================================>-----------]  88%
  11299/12870 [===========================================================================>----------]  88%
  11300/12870 [===========================================================================>----------]  88%
  11301/12870 [===========================================================================>----------]  88%
  11302/12870 [===========================================================================>----------]  88%
  11303/12870 [===========================================================================>----------]  88%
  11304/12870 [===========================================================================>----------]  88%
  11305/12870 [===========================================================================>----------]  88%
  11306/12870 [===========================================================================>----------]  88%
  11307/12870 [===========================================================================>----------]  88%
  11308/12870 [===========================================================================>----------]  88%
  11309/12870 [===========================================================================>----------]  88%
  11310/12870 [===========================================================================>----------]  88%
  11311/12870 [===========================================================================>----------]  88%
  11312/12870 [===========================================================================>----------]  88%
  11313/12870 [===========================================================================>----------]  88%
  11314/12870 [===========================================================================>----------]  88%
  11315/12870 [===========================================================================>----------]  88%
  11316/12870 [===========================================================================>----------]  88%
  11317/12870 [===========================================================================>----------]  88%
  11318/12870 [===========================================================================>----------]  88%
  11319/12870 [===========================================================================>----------]  88%
  11320/12870 [===========================================================================>----------]  88%
  11321/12870 [===========================================================================>----------]  88%
  11322/12870 [===========================================================================>----------]  88%
  11323/12870 [===========================================================================>----------]  88%
  11324/12870 [===========================================================================>----------]  88%
  11325/12870 [===========================================================================>----------]  88%
  11326/12870 [===========================================================================>----------]  88%
  11327/12870 [===========================================================================>----------]  88%
  11328/12870 [===========================================================================>----------]  88%
  11329/12870 [===========================================================================>----------]  88%
  11330/12870 [===========================================================================>----------]  88%
  11331/12870 [===========================================================================>----------]  88%
  11332/12870 [===========================================================================>----------]  88%
  11333/12870 [===========================================================================>----------]  88%
  11334/12870 [===========================================================================>----------]  88%
  11335/12870 [===========================================================================>----------]  88%
  11336/12870 [===========================================================================>----------]  88%
  11337/12870 [===========================================================================>----------]  88%
  11338/12870 [===========================================================================>----------]  88%
  11339/12870 [===========================================================================>----------]  88%
  11340/12870 [===========================================================================>----------]  88%
  11341/12870 [===========================================================================>----------]  88%
  11342/12870 [===========================================================================>----------]  88%
  11343/12870 [===========================================================================>----------]  88%
  11344/12870 [===========================================================================>----------]  88%
  11345/12870 [===========================================================================>----------]  88%
  11346/12870 [===========================================================================>----------]  88%
  11347/12870 [===========================================================================>----------]  88%
  11348/12870 [===========================================================================>----------]  88%
  11349/12870 [===========================================================================>----------]  88%
  11350/12870 [===========================================================================>----------]  88%
  11351/12870 [===========================================================================>----------]  88%
  11352/12870 [===========================================================================>----------]  88%
  11353/12870 [===========================================================================>----------]  88%
  11354/12870 [===========================================================================>----------]  88%
  11355/12870 [===========================================================================>----------]  88%
  11356/12870 [===========================================================================>----------]  88%
  11357/12870 [===========================================================================>----------]  88%
  11358/12870 [===========================================================================>----------]  88%
  11359/12870 [===========================================================================>----------]  88%
  11360/12870 [===========================================================================>----------]  88%
  11361/12870 [===========================================================================>----------]  88%
  11362/12870 [===========================================================================>----------]  88%
  11363/12870 [===========================================================================>----------]  88%
  11364/12870 [===========================================================================>----------]  88%
  11365/12870 [===========================================================================>----------]  88%
  11366/12870 [===========================================================================>----------]  88%
  11367/12870 [===========================================================================>----------]  88%
  11368/12870 [===========================================================================>----------]  88%
  11369/12870 [===========================================================================>----------]  88%
  11370/12870 [===========================================================================>----------]  88%
  11371/12870 [===========================================================================>----------]  88%
  11372/12870 [===========================================================================>----------]  88%
  11373/12870 [===========================================================================>----------]  88%
  11374/12870 [===========================================================================>----------]  88%
  11375/12870 [===========================================================================>----------]  88%
  11376/12870 [===========================================================================>----------]  88%
  11377/12870 [===========================================================================>----------]  88%
  11378/12870 [===========================================================================>----------]  88%
  11379/12870 [===========================================================================>----------]  88%
  11380/12870 [===========================================================================>----------]  88%
  11381/12870 [===========================================================================>----------]  88%
  11382/12870 [===========================================================================>----------]  88%
  11383/12870 [===========================================================================>----------]  88%
  11384/12870 [===========================================================================>----------]  88%
  11385/12870 [===========================================================================>----------]  88%
  11386/12870 [===========================================================================>----------]  88%
  11387/12870 [===========================================================================>----------]  88%
  11388/12870 [===========================================================================>----------]  88%
  11389/12870 [===========================================================================>----------]  88%
  11390/12870 [===========================================================================>----------]  89%
  11391/12870 [===========================================================================>----------]  89%
  11392/12870 [===========================================================================>----------]  89%
  11393/12870 [===========================================================================>----------]  89%
  11394/12870 [===========================================================================>----------]  89%
  11395/12870 [===========================================================================>----------]  89%
  11396/12870 [===========================================================================>----------]  89%
  11397/12870 [===========================================================================>----------]  89%
  11398/12870 [===========================================================================>----------]  89%
  11399/12870 [===========================================================================>----------]  89%
  11400/12870 [===========================================================================>----------]  89%
  11401/12870 [===========================================================================>----------]  89%
  11402/12870 [===========================================================================>----------]  89%
  11403/12870 [===========================================================================>----------]  89%
  11404/12870 [===========================================================================>----------]  89%
  11405/12870 [===========================================================================>----------]  89%
  11406/12870 [===========================================================================>----------]  89%
  11407/12870 [===========================================================================>----------]  89%
  11408/12870 [===========================================================================>----------]  89%
  11409/12870 [===========================================================================>----------]  89%
  11410/12870 [===========================================================================>----------]  89%
  11411/12870 [===========================================================================>----------]  89%
  11412/12870 [===========================================================================>----------]  89%
  11413/12870 [===========================================================================>----------]  89%
  11414/12870 [===========================================================================>----------]  89%
  11415/12870 [===========================================================================>----------]  89%
  11416/12870 [===========================================================================>----------]  89%
  11417/12870 [===========================================================================>----------]  89%
  11418/12870 [===========================================================================>----------]  89%
  11419/12870 [===========================================================================>----------]  89%
  11420/12870 [===========================================================================>----------]  89%
  11421/12870 [===========================================================================>----------]  89%
  11422/12870 [===========================================================================>----------]  89%
  11423/12870 [===========================================================================>----------]  89%
  11424/12870 [===========================================================================>----------]  89%
  11425/12870 [===========================================================================>----------]  89%
  11426/12870 [===========================================================================>----------]  89%
  11427/12870 [===========================================================================>----------]  89%
  11428/12870 [===========================================================================>----------]  89%
  11429/12870 [===========================================================================>----------]  89%
  11430/12870 [===========================================================================>----------]  89%
  11431/12870 [===========================================================================>----------]  89%
  11432/12870 [===========================================================================>----------]  89%
  11433/12870 [===========================================================================>----------]  89%
  11434/12870 [===========================================================================>----------]  89%
  11435/12870 [===========================================================================>----------]  89%
  11436/12870 [===========================================================================>----------]  89%
  11437/12870 [===========================================================================>----------]  89%
  11438/12870 [===========================================================================>----------]  89%
  11439/12870 [===========================================================================>----------]  89%
  11440/12870 [===========================================================================>----------]  89%
  11441/12870 [===========================================================================>----------]  89%
  11442/12870 [===========================================================================>----------]  89%
  11443/12870 [===========================================================================>----------]  89%
  11444/12870 [===========================================================================>----------]  89%
  11445/12870 [===========================================================================>----------]  89%
  11446/12870 [===========================================================================>----------]  89%
  11447/12870 [===========================================================================>----------]  89%
  11448/12870 [===========================================================================>----------]  89%
  11449/12870 [============================================================================>---------]  89%
  11450/12870 [============================================================================>---------]  89%
  11451/12870 [============================================================================>---------]  89%
  11452/12870 [============================================================================>---------]  89%
  11453/12870 [============================================================================>---------]  89%
  11454/12870 [============================================================================>---------]  89%
  11455/12870 [============================================================================>---------]  89%
  11456/12870 [============================================================================>---------]  89%
  11457/12870 [============================================================================>---------]  89%
  11458/12870 [============================================================================>---------]  89%
  11459/12870 [============================================================================>---------]  89%
  11460/12870 [============================================================================>---------]  89%
  11461/12870 [============================================================================>---------]  89%
  11462/12870 [============================================================================>---------]  89%
  11463/12870 [============================================================================>---------]  89%
  11464/12870 [============================================================================>---------]  89%
  11465/12870 [============================================================================>---------]  89%
  11466/12870 [============================================================================>---------]  89%
  11467/12870 [============================================================================>---------]  89%
  11468/12870 [============================================================================>---------]  89%
  11469/12870 [============================================================================>---------]  89%
  11470/12870 [============================================================================>---------]  89%
  11471/12870 [============================================================================>---------]  89%
  11472/12870 [============================================================================>---------]  89%
  11473/12870 [============================================================================>---------]  89%
  11474/12870 [============================================================================>---------]  89%
  11475/12870 [============================================================================>---------]  89%
  11476/12870 [============================================================================>---------]  89%
  11477/12870 [============================================================================>---------]  89%
  11478/12870 [============================================================================>---------]  89%
  11479/12870 [============================================================================>---------]  89%
  11480/12870 [============================================================================>---------]  89%
  11481/12870 [============================================================================>---------]  89%
  11482/12870 [============================================================================>---------]  89%
  11483/12870 [============================================================================>---------]  89%
  11484/12870 [============================================================================>---------]  89%
  11485/12870 [============================================================================>---------]  89%
  11486/12870 [============================================================================>---------]  89%
  11487/12870 [============================================================================>---------]  89%
  11488/12870 [============================================================================>---------]  89%
  11489/12870 [============================================================================>---------]  89%
  11490/12870 [============================================================================>---------]  89%
  11491/12870 [============================================================================>---------]  89%
  11492/12870 [============================================================================>---------]  89%
  11493/12870 [============================================================================>---------]  89%
  11494/12870 [============================================================================>---------]  89%
  11495/12870 [============================================================================>---------]  89%
  11496/12870 [============================================================================>---------]  89%
  11497/12870 [============================================================================>---------]  89%
  11498/12870 [============================================================================>---------]  89%
  11499/12870 [============================================================================>---------]  89%
  11500/12870 [============================================================================>---------]  89%
  11501/12870 [============================================================================>---------]  89%
  11502/12870 [============================================================================>---------]  89%
  11503/12870 [============================================================================>---------]  89%
  11504/12870 [============================================================================>---------]  89%
  11505/12870 [============================================================================>---------]  89%
  11506/12870 [============================================================================>---------]  89%
  11507/12870 [============================================================================>---------]  89%
  11508/12870 [============================================================================>---------]  89%
  11509/12870 [============================================================================>---------]  89%
  11510/12870 [============================================================================>---------]  89%
  11511/12870 [============================================================================>---------]  89%
  11512/12870 [============================================================================>---------]  89%
  11513/12870 [============================================================================>---------]  89%
  11514/12870 [============================================================================>---------]  89%
  11515/12870 [============================================================================>---------]  89%
  11516/12870 [============================================================================>---------]  89%
  11517/12870 [============================================================================>---------]  89%
  11518/12870 [============================================================================>---------]  89%
  11519/12870 [============================================================================>---------]  90%
  11520/12870 [============================================================================>---------]  90%
  11521/12870 [============================================================================>---------]  90%
  11522/12870 [============================================================================>---------]  90%
  11523/12870 [============================================================================>---------]  90%
  11524/12870 [============================================================================>---------]  90%
  11525/12870 [============================================================================>---------]  90%
  11526/12870 [============================================================================>---------]  90%
  11527/12870 [============================================================================>---------]  90%
  11528/12870 [============================================================================>---------]  90%
  11529/12870 [============================================================================>---------]  90%
  11530/12870 [============================================================================>---------]  90%
  11531/12870 [============================================================================>---------]  90%
  11532/12870 [============================================================================>---------]  90%
  11533/12870 [============================================================================>---------]  90%
  11534/12870 [============================================================================>---------]  90%
  11535/12870 [============================================================================>---------]  90%
  11536/12870 [============================================================================>---------]  90%
  11537/12870 [============================================================================>---------]  90%
  11538/12870 [============================================================================>---------]  90%
  11539/12870 [============================================================================>---------]  90%
  11540/12870 [============================================================================>---------]  90%
  11541/12870 [============================================================================>---------]  90%
  11542/12870 [============================================================================>---------]  90%
  11543/12870 [============================================================================>---------]  90%
  11544/12870 [============================================================================>---------]  90%
  11545/12870 [============================================================================>---------]  90%
  11546/12870 [============================================================================>---------]  90%
  11547/12870 [============================================================================>---------]  90%
  11548/12870 [============================================================================>---------]  90%
  11549/12870 [============================================================================>---------]  90%
  11550/12870 [============================================================================>---------]  90%
  11551/12870 [============================================================================>---------]  90%
  11552/12870 [============================================================================>---------]  90%
  11553/12870 [============================================================================>---------]  90%
  11554/12870 [============================================================================>---------]  90%
  11555/12870 [============================================================================>---------]  90%
  11556/12870 [============================================================================>---------]  90%
  11557/12870 [============================================================================>---------]  90%
  11558/12870 [============================================================================>---------]  90%
  11559/12870 [============================================================================>---------]  90%
  11560/12870 [============================================================================>---------]  90%
  11561/12870 [============================================================================>---------]  90%
  11562/12870 [============================================================================>---------]  90%
  11563/12870 [============================================================================>---------]  90%
  11564/12870 [============================================================================>---------]  90%
  11565/12870 [============================================================================>---------]  90%
  11566/12870 [============================================================================>---------]  90%
  11567/12870 [============================================================================>---------]  90%
  11568/12870 [============================================================================>---------]  90%
  11569/12870 [============================================================================>---------]  90%
  11570/12870 [============================================================================>---------]  90%
  11571/12870 [============================================================================>---------]  90%
  11572/12870 [============================================================================>---------]  90%
  11573/12870 [============================================================================>---------]  90%
  11574/12870 [============================================================================>---------]  90%
  11575/12870 [============================================================================>---------]  90%
  11576/12870 [============================================================================>---------]  90%
  11577/12870 [============================================================================>---------]  90%
  11578/12870 [============================================================================>---------]  90%
  11579/12870 [============================================================================>---------]  90%
  11580/12870 [============================================================================>---------]  90%
  11581/12870 [============================================================================>---------]  90%
  11582/12870 [============================================================================>---------]  90%
  11583/12870 [============================================================================>---------]  90%
  11584/12870 [============================================================================>---------]  90%
  11585/12870 [============================================================================>---------]  90%
  11586/12870 [============================================================================>---------]  90%
  11587/12870 [============================================================================>---------]  90%
  11588/12870 [============================================================================>---------]  90%
  11589/12870 [============================================================================>---------]  90%
  11590/12870 [============================================================================>---------]  90%
  11591/12870 [============================================================================>---------]  90%
  11592/12870 [============================================================================>---------]  90%
  11593/12870 [============================================================================>---------]  90%
  11594/12870 [============================================================================>---------]  90%
  11595/12870 [============================================================================>---------]  90%
  11596/12870 [============================================================================>---------]  90%
  11597/12870 [============================================================================>---------]  90%
  11598/12870 [=============================================================================>--------]  90%
  11599/12870 [=============================================================================>--------]  90%
  11600/12870 [=============================================================================>--------]  90%
  11601/12870 [=============================================================================>--------]  90%
  11602/12870 [=============================================================================>--------]  90%
  11603/12870 [=============================================================================>--------]  90%
  11604/12870 [=============================================================================>--------]  90%
  11605/12870 [=============================================================================>--------]  90%
  11606/12870 [=============================================================================>--------]  90%
  11607/12870 [=============================================================================>--------]  90%
  11608/12870 [=============================================================================>--------]  90%
  11609/12870 [=============================================================================>--------]  90%
  11610/12870 [=============================================================================>--------]  90%
  11611/12870 [=============================================================================>--------]  90%
  11612/12870 [=============================================================================>--------]  90%
  11613/12870 [=============================================================================>--------]  90%
  11614/12870 [=============================================================================>--------]  90%
  11615/12870 [=============================================================================>--------]  90%
  11616/12870 [=============================================================================>--------]  90%
  11617/12870 [=============================================================================>--------]  90%
  11618/12870 [=============================================================================>--------]  90%
  11619/12870 [=============================================================================>--------]  90%
  11620/12870 [=============================================================================>--------]  90%
  11621/12870 [=============================================================================>--------]  90%
  11622/12870 [=============================================================================>--------]  90%
  11623/12870 [=============================================================================>--------]  90%
  11624/12870 [=============================================================================>--------]  90%
  11625/12870 [=============================================================================>--------]  90%
  11626/12870 [=============================================================================>--------]  90%
  11627/12870 [=============================================================================>--------]  90%
  11628/12870 [=============================================================================>--------]  90%
  11629/12870 [=============================================================================>--------]  90%
  11630/12870 [=============================================================================>--------]  90%
  11631/12870 [=============================================================================>--------]  90%
  11632/12870 [=============================================================================>--------]  90%
  11633/12870 [=============================================================================>--------]  90%
  11634/12870 [=============================================================================>--------]  90%
  11635/12870 [=============================================================================>--------]  90%
  11636/12870 [=============================================================================>--------]  90%
  11637/12870 [=============================================================================>--------]  90%
  11638/12870 [=============================================================================>--------]  90%
  11639/12870 [=============================================================================>--------]  90%
  11640/12870 [=============================================================================>--------]  90%
  11641/12870 [=============================================================================>--------]  90%
  11642/12870 [=============================================================================>--------]  90%
  11643/12870 [=============================================================================>--------]  90%
  11644/12870 [=============================================================================>--------]  90%
  11645/12870 [=============================================================================>--------]  90%
  11646/12870 [=============================================================================>--------]  90%
  11647/12870 [=============================================================================>--------]  90%
  11648/12870 [=============================================================================>--------]  91%
  11649/12870 [=============================================================================>--------]  91%
  11650/12870 [=============================================================================>--------]  91%
  11651/12870 [=============================================================================>--------]  91%
  11652/12870 [=============================================================================>--------]  91%
  11653/12870 [=============================================================================>--------]  91%
  11654/12870 [=============================================================================>--------]  91%
  11655/12870 [=============================================================================>--------]  91%
  11656/12870 [=============================================================================>--------]  91%
  11657/12870 [=============================================================================>--------]  91%
  11658/12870 [=============================================================================>--------]  91%
  11659/12870 [=============================================================================>--------]  91%
  11660/12870 [=============================================================================>--------]  91%
  11661/12870 [=============================================================================>--------]  91%
  11662/12870 [=============================================================================>--------]  91%
  11663/12870 [=============================================================================>--------]  91%
  11664/12870 [=============================================================================>--------]  91%
  11665/12870 [=============================================================================>--------]  91%
  11666/12870 [=============================================================================>--------]  91%
  11667/12870 [=============================================================================>--------]  91%
  11668/12870 [=============================================================================>--------]  91%
  11669/12870 [=============================================================================>--------]  91%
  11670/12870 [=============================================================================>--------]  91%
  11671/12870 [=============================================================================>--------]  91%
  11672/12870 [=============================================================================>--------]  91%
  11673/12870 [=============================================================================>--------]  91%
  11674/12870 [=============================================================================>--------]  91%
  11675/12870 [=============================================================================>--------]  91%
  11676/12870 [=============================================================================>--------]  91%
  11677/12870 [=============================================================================>--------]  91%
  11678/12870 [=============================================================================>--------]  91%
  11679/12870 [=============================================================================>--------]  91%
  11680/12870 [=============================================================================>--------]  91%
  11681/12870 [=============================================================================>--------]  91%
  11682/12870 [=============================================================================>--------]  91%
  11683/12870 [=============================================================================>--------]  91%
  11684/12870 [=============================================================================>--------]  91%
  11685/12870 [=============================================================================>--------]  91%
  11686/12870 [=============================================================================>--------]  91%
  11687/12870 [=============================================================================>--------]  91%
  11688/12870 [=============================================================================>--------]  91%
  11689/12870 [=============================================================================>--------]  91%
  11690/12870 [=============================================================================>--------]  91%
  11691/12870 [=============================================================================>--------]  91%
  11692/12870 [=============================================================================>--------]  91%
  11693/12870 [=============================================================================>--------]  91%
  11694/12870 [=============================================================================>--------]  91%
  11695/12870 [=============================================================================>--------]  91%
  11696/12870 [=============================================================================>--------]  91%
  11697/12870 [=============================================================================>--------]  91%
  11698/12870 [=============================================================================>--------]  91%
  11699/12870 [=============================================================================>--------]  91%
  11700/12870 [=============================================================================>--------]  91%
  11701/12870 [=============================================================================>--------]  91%
  11702/12870 [=============================================================================>--------]  91%
  11703/12870 [=============================================================================>--------]  91%
  11704/12870 [=============================================================================>--------]  91%
  11705/12870 [=============================================================================>--------]  91%
  11706/12870 [=============================================================================>--------]  91%
  11707/12870 [=============================================================================>--------]  91%
  11708/12870 [=============================================================================>--------]  91%
  11709/12870 [=============================================================================>--------]  91%
  11710/12870 [=============================================================================>--------]  91%
  11711/12870 [=============================================================================>--------]  91%
  11712/12870 [=============================================================================>--------]  91%
  11713/12870 [=============================================================================>--------]  91%
  11714/12870 [=============================================================================>--------]  91%
  11715/12870 [=============================================================================>--------]  91%
  11716/12870 [=============================================================================>--------]  91%
  11717/12870 [=============================================================================>--------]  91%
  11718/12870 [=============================================================================>--------]  91%
  11719/12870 [=============================================================================>--------]  91%
  11720/12870 [=============================================================================>--------]  91%
  11721/12870 [=============================================================================>--------]  91%
  11722/12870 [=============================================================================>--------]  91%
  11723/12870 [=============================================================================>--------]  91%
  11724/12870 [=============================================================================>--------]  91%
  11725/12870 [=============================================================================>--------]  91%
  11726/12870 [=============================================================================>--------]  91%
  11727/12870 [=============================================================================>--------]  91%
  11728/12870 [=============================================================================>--------]  91%
  11729/12870 [=============================================================================>--------]  91%
  11730/12870 [=============================================================================>--------]  91%
  11731/12870 [=============================================================================>--------]  91%
  11732/12870 [=============================================================================>--------]  91%
  11733/12870 [=============================================================================>--------]  91%
  11734/12870 [=============================================================================>--------]  91%
  11735/12870 [=============================================================================>--------]  91%
  11736/12870 [=============================================================================>--------]  91%
  11737/12870 [=============================================================================>--------]  91%
  11738/12870 [=============================================================================>--------]  91%
  11739/12870 [=============================================================================>--------]  91%
  11740/12870 [=============================================================================>--------]  91%
  11741/12870 [=============================================================================>--------]  91%
  11742/12870 [=============================================================================>--------]  91%
  11743/12870 [=============================================================================>--------]  91%
  11744/12870 [=============================================================================>--------]  91%
  11745/12870 [=============================================================================>--------]  91%
  11746/12870 [=============================================================================>--------]  91%
  11747/12870 [=============================================================================>--------]  91%
  11748/12870 [==============================================================================>-------]  91%
  11749/12870 [==============================================================================>-------]  91%
  11750/12870 [==============================================================================>-------]  91%
  11751/12870 [==============================================================================>-------]  91%
  11752/12870 [==============================================================================>-------]  91%
  11753/12870 [==============================================================================>-------]  91%
  11754/12870 [==============================================================================>-------]  91%
  11755/12870 [==============================================================================>-------]  91%
  11756/12870 [==============================================================================>-------]  91%
  11757/12870 [==============================================================================>-------]  91%
  11758/12870 [==============================================================================>-------]  91%
  11759/12870 [==============================================================================>-------]  91%
  11760/12870 [==============================================================================>-------]  91%
  11761/12870 [==============================================================================>-------]  91%
  11762/12870 [==============================================================================>-------]  91%
  11763/12870 [==============================================================================>-------]  91%
  11764/12870 [==============================================================================>-------]  91%
  11765/12870 [==============================================================================>-------]  91%
  11766/12870 [==============================================================================>-------]  91%
  11767/12870 [==============================================================================>-------]  91%
  11768/12870 [==============================================================================>-------]  91%
  11769/12870 [==============================================================================>-------]  91%
  11770/12870 [==============================================================================>-------]  91%
  11771/12870 [==============================================================================>-------]  91%
  11772/12870 [==============================================================================>-------]  91%
  11773/12870 [==============================================================================>-------]  91%
  11774/12870 [==============================================================================>-------]  91%
  11775/12870 [==============================================================================>-------]  91%
  11776/12870 [==============================================================================>-------]  91%
  11777/12870 [==============================================================================>-------]  92%
  11778/12870 [==============================================================================>-------]  92%
  11779/12870 [==============================================================================>-------]  92%
  11780/12870 [==============================================================================>-------]  92%
  11781/12870 [==============================================================================>-------]  92%
  11782/12870 [==============================================================================>-------]  92%
  11783/12870 [==============================================================================>-------]  92%
  11784/12870 [==============================================================================>-------]  92%
  11785/12870 [==============================================================================>-------]  92%
  11786/12870 [==============================================================================>-------]  92%
  11787/12870 [==============================================================================>-------]  92%
  11788/12870 [==============================================================================>-------]  92%
  11789/12870 [==============================================================================>-------]  92%
  11790/12870 [==============================================================================>-------]  92%
  11791/12870 [==============================================================================>-------]  92%
  11792/12870 [==============================================================================>-------]  92%
  11793/12870 [==============================================================================>-------]  92%
  11794/12870 [==============================================================================>-------]  92%
  11795/12870 [==============================================================================>-------]  92%
  11796/12870 [==============================================================================>-------]  92%
  11797/12870 [==============================================================================>-------]  92%
  11798/12870 [==============================================================================>-------]  92%
  11799/12870 [==============================================================================>-------]  92%
  11800/12870 [==============================================================================>-------]  92%
  11801/12870 [==============================================================================>-------]  92%
  11802/12870 [==============================================================================>-------]  92%
  11803/12870 [==============================================================================>-------]  92%
  11804/12870 [==============================================================================>-------]  92%
  11805/12870 [==============================================================================>-------]  92%
  11806/12870 [==============================================================================>-------]  92%
  11807/12870 [==============================================================================>-------]  92%
  11808/12870 [==============================================================================>-------]  92%
  11809/12870 [==============================================================================>-------]  92%
  11810/12870 [==============================================================================>-------]  92%
  11811/12870 [==============================================================================>-------]  92%
  11812/12870 [==============================================================================>-------]  92%
  11813/12870 [==============================================================================>-------]  92%
  11814/12870 [==============================================================================>-------]  92%
  11815/12870 [==============================================================================>-------]  92%
  11816/12870 [==============================================================================>-------]  92%
  11817/12870 [==============================================================================>-------]  92%
  11818/12870 [==============================================================================>-------]  92%
  11819/12870 [==============================================================================>-------]  92%
  11820/12870 [==============================================================================>-------]  92%
  11821/12870 [==============================================================================>-------]  92%
  11822/12870 [==============================================================================>-------]  92%
  11823/12870 [==============================================================================>-------]  92%
  11824/12870 [==============================================================================>-------]  92%
  11825/12870 [==============================================================================>-------]  92%
  11826/12870 [==============================================================================>-------]  92%
  11827/12870 [==============================================================================>-------]  92%
  11828/12870 [==============================================================================>-------]  92%
  11829/12870 [==============================================================================>-------]  92%
  11830/12870 [==============================================================================>-------]  92%
  11831/12870 [==============================================================================>-------]  92%
  11832/12870 [==============================================================================>-------]  92%
  11833/12870 [==============================================================================>-------]  92%
  11834/12870 [==============================================================================>-------]  92%
  11835/12870 [==============================================================================>-------]  92%
  11836/12870 [==============================================================================>-------]  92%
  11837/12870 [==============================================================================>-------]  92%
  11838/12870 [==============================================================================>-------]  92%
  11839/12870 [==============================================================================>-------]  92%
  11840/12870 [==============================================================================>-------]  92%
  11841/12870 [==============================================================================>-------]  92%
  11842/12870 [==============================================================================>-------]  92%
  11843/12870 [==============================================================================>-------]  92%
  11844/12870 [==============================================================================>-------]  92%
  11845/12870 [==============================================================================>-------]  92%
  11846/12870 [==============================================================================>-------]  92%
  11847/12870 [==============================================================================>-------]  92%
  11848/12870 [==============================================================================>-------]  92%
  11849/12870 [==============================================================================>-------]  92%
  11850/12870 [==============================================================================>-------]  92%
  11851/12870 [==============================================================================>-------]  92%
  11852/12870 [==============================================================================>-------]  92%
  11853/12870 [==============================================================================>-------]  92%
  11854/12870 [==============================================================================>-------]  92%
  11855/12870 [==============================================================================>-------]  92%
  11856/12870 [==============================================================================>-------]  92%
  11857/12870 [==============================================================================>-------]  92%
  11858/12870 [==============================================================================>-------]  92%
  11859/12870 [==============================================================================>-------]  92%
  11860/12870 [==============================================================================>-------]  92%
  11861/12870 [==============================================================================>-------]  92%
  11862/12870 [==============================================================================>-------]  92%
  11863/12870 [==============================================================================>-------]  92%
  11864/12870 [==============================================================================>-------]  92%
  11865/12870 [==============================================================================>-------]  92%
  11866/12870 [==============================================================================>-------]  92%
  11867/12870 [==============================================================================>-------]  92%
  11868/12870 [==============================================================================>-------]  92%
  11869/12870 [==============================================================================>-------]  92%
  11870/12870 [==============================================================================>-------]  92%
  11871/12870 [==============================================================================>-------]  92%
  11872/12870 [==============================================================================>-------]  92%
  11873/12870 [==============================================================================>-------]  92%
  11874/12870 [==============================================================================>-------]  92%
  11875/12870 [==============================================================================>-------]  92%
  11876/12870 [==============================================================================>-------]  92%
  11877/12870 [==============================================================================>-------]  92%
  11878/12870 [==============================================================================>-------]  92%
  11879/12870 [==============================================================================>-------]  92%
  11880/12870 [==============================================================================>-------]  92%
  11881/12870 [==============================================================================>-------]  92%
  11882/12870 [==============================================================================>-------]  92%
  11883/12870 [==============================================================================>-------]  92%
  11884/12870 [==============================================================================>-------]  92%
  11885/12870 [==============================================================================>-------]  92%
  11886/12870 [==============================================================================>-------]  92%
  11887/12870 [==============================================================================>-------]  92%
  11888/12870 [==============================================================================>-------]  92%
  11889/12870 [==============================================================================>-------]  92%
  11890/12870 [==============================================================================>-------]  92%
  11891/12870 [==============================================================================>-------]  92%
  11892/12870 [==============================================================================>-------]  92%
  11893/12870 [==============================================================================>-------]  92%
  11894/12870 [==============================================================================>-------]  92%
  11895/12870 [==============================================================================>-------]  92%
  11896/12870 [==============================================================================>-------]  92%
  11897/12870 [==============================================================================>-------]  92%
  11898/12870 [===============================================================================>------]  92%
  11899/12870 [===============================================================================>------]  92%
  11900/12870 [===============================================================================>------]  92%
  11901/12870 [===============================================================================>------]  92%
  11902/12870 [===============================================================================>------]  92%
  11903/12870 [===============================================================================>------]  92%
  11904/12870 [===============================================================================>------]  92%
  11905/12870 [===============================================================================>------]  93%
  11906/12870 [===============================================================================>------]  93%
  11907/12870 [===============================================================================>------]  93%
  11908/12870 [===============================================================================>------]  93%
  11909/12870 [===============================================================================>------]  93%
  11910/12870 [===============================================================================>------]  93%
  11911/12870 [===============================================================================>------]  93%
  11912/12870 [===============================================================================>------]  93%
  11913/12870 [===============================================================================>------]  93%
  11914/12870 [===============================================================================>------]  93%
  11915/12870 [===============================================================================>------]  93%
  11916/12870 [===============================================================================>------]  93%
  11917/12870 [===============================================================================>------]  93%
  11918/12870 [===============================================================================>------]  93%
  11919/12870 [===============================================================================>------]  93%
  11920/12870 [===============================================================================>------]  93%
  11921/12870 [===============================================================================>------]  93%
  11922/12870 [===============================================================================>------]  93%
  11923/12870 [===============================================================================>------]  93%
  11924/12870 [===============================================================================>------]  93%
  11925/12870 [===============================================================================>------]  93%
  11926/12870 [===============================================================================>------]  93%
  11927/12870 [===============================================================================>------]  93%
  11928/12870 [===============================================================================>------]  93%
  11929/12870 [===============================================================================>------]  93%
  11930/12870 [===============================================================================>------]  93%
  11931/12870 [===============================================================================>------]  93%
  11932/12870 [===============================================================================>------]  93%
  11933/12870 [===============================================================================>------]  93%
  11934/12870 [===============================================================================>------]  93%
  11935/12870 [===============================================================================>------]  93%
  11936/12870 [===============================================================================>------]  93%
  11937/12870 [===============================================================================>------]  93%
  11938/12870 [===============================================================================>------]  93%
  11939/12870 [===============================================================================>------]  93%
  11940/12870 [===============================================================================>------]  93%
  11941/12870 [===============================================================================>------]  93%
  11942/12870 [===============================================================================>------]  93%
  11943/12870 [===============================================================================>------]  93%
  11944/12870 [===============================================================================>------]  93%
  11945/12870 [===============================================================================>------]  93%
  11946/12870 [===============================================================================>------]  93%
  11947/12870 [===============================================================================>------]  93%
  11948/12870 [===============================================================================>------]  93%
  11949/12870 [===============================================================================>------]  93%
  11950/12870 [===============================================================================>------]  93%
  11951/12870 [===============================================================================>------]  93%
  11952/12870 [===============================================================================>------]  93%
  11953/12870 [===============================================================================>------]  93%
  11954/12870 [===============================================================================>------]  93%
  11955/12870 [===============================================================================>------]  93%
  11956/12870 [===============================================================================>------]  93%
  11957/12870 [===============================================================================>------]  93%
  11958/12870 [===============================================================================>------]  93%
  11959/12870 [===============================================================================>------]  93%
  11960/12870 [===============================================================================>------]  93%
  11961/12870 [===============================================================================>------]  93%
  11962/12870 [===============================================================================>------]  93%
  11963/12870 [===============================================================================>------]  93%
  11964/12870 [===============================================================================>------]  93%
  11965/12870 [===============================================================================>------]  93%
  11966/12870 [===============================================================================>------]  93%
  11967/12870 [===============================================================================>------]  93%
  11968/12870 [===============================================================================>------]  93%
  11969/12870 [===============================================================================>------]  93%
  11970/12870 [===============================================================================>------]  93%
  11971/12870 [===============================================================================>------]  93%
  11972/12870 [===============================================================================>------]  93%
  11973/12870 [===============================================================================>------]  93%
  11974/12870 [===============================================================================>------]  93%
  11975/12870 [===============================================================================>------]  93%
  11976/12870 [===============================================================================>------]  93%
  11977/12870 [===============================================================================>------]  93%
  11978/12870 [===============================================================================>------]  93%
  11979/12870 [===============================================================================>------]  93%
  11980/12870 [===============================================================================>------]  93%
  11981/12870 [===============================================================================>------]  93%
  11982/12870 [===============================================================================>------]  93%
  11983/12870 [===============================================================================>------]  93%
  11984/12870 [===============================================================================>------]  93%
  11985/12870 [===============================================================================>------]  93%
  11986/12870 [===============================================================================>------]  93%
  11987/12870 [===============================================================================>------]  93%
  11988/12870 [===============================================================================>------]  93%
  11989/12870 [===============================================================================>------]  93%
  11990/12870 [===============================================================================>------]  93%
  11991/12870 [===============================================================================>------]  93%
  11992/12870 [===============================================================================>------]  93%
  11993/12870 [===============================================================================>------]  93%
  11994/12870 [===============================================================================>------]  93%
  11995/12870 [===============================================================================>------]  93%
  11996/12870 [===============================================================================>------]  93%
  11997/12870 [===============================================================================>------]  93%
  11998/12870 [===============================================================================>------]  93%
  11999/12870 [===============================================================================>------]  93%
  12000/12870 [===============================================================================>------]  93%
  12001/12870 [===============================================================================>------]  93%
  12002/12870 [===============================================================================>------]  93%
  12003/12870 [===============================================================================>------]  93%
  12004/12870 [===============================================================================>------]  93%
  12005/12870 [===============================================================================>------]  93%
  12006/12870 [===============================================================================>------]  93%
  12007/12870 [===============================================================================>------]  93%
  12008/12870 [===============================================================================>------]  93%
  12009/12870 [===============================================================================>------]  93%
  12010/12870 [===============================================================================>------]  93%
  12011/12870 [===============================================================================>------]  93%
  12012/12870 [===============================================================================>------]  93%
  12013/12870 [===============================================================================>------]  93%
  12014/12870 [===============================================================================>------]  93%
  12015/12870 [===============================================================================>------]  93%
  12016/12870 [===============================================================================>------]  93%
  12017/12870 [===============================================================================>------]  93%
  12018/12870 [===============================================================================>------]  93%
  12019/12870 [===============================================================================>------]  93%
  12020/12870 [===============================================================================>------]  93%
  12021/12870 [===============================================================================>------]  93%
  12022/12870 [===============================================================================>------]  93%
  12023/12870 [===============================================================================>------]  93%
  12024/12870 [===============================================================================>------]  93%
  12025/12870 [===============================================================================>------]  93%
  12026/12870 [===============================================================================>------]  93%
  12027/12870 [===============================================================================>------]  93%
  12028/12870 [===============================================================================>------]  93%
  12029/12870 [===============================================================================>------]  93%
  12030/12870 [===============================================================================>------]  93%
  12031/12870 [===============================================================================>------]  93%
  12032/12870 [===============================================================================>------]  93%
  12033/12870 [===============================================================================>------]  93%
  12034/12870 [===============================================================================>------]  94%
  12035/12870 [===============================================================================>------]  94%
  12036/12870 [===============================================================================>------]  94%
  12037/12870 [===============================================================================>------]  94%
  12038/12870 [===============================================================================>------]  94%
  12039/12870 [===============================================================================>------]  94%
  12040/12870 [===============================================================================>------]  94%
  12041/12870 [===============================================================================>------]  94%
  12042/12870 [===============================================================================>------]  94%
  12043/12870 [===============================================================================>------]  94%
  12044/12870 [===============================================================================>------]  94%
  12045/12870 [===============================================================================>------]  94%
  12046/12870 [===============================================================================>------]  94%
  12047/12870 [================================================================================>-----]  94%
  12048/12870 [================================================================================>-----]  94%
  12049/12870 [================================================================================>-----]  94%
  12050/12870 [================================================================================>-----]  94%
  12051/12870 [================================================================================>-----]  94%
  12052/12870 [================================================================================>-----]  94%
  12053/12870 [================================================================================>-----]  94%
  12054/12870 [================================================================================>-----]  94%
  12055/12870 [================================================================================>-----]  94%
  12056/12870 [================================================================================>-----]  94%
  12057/12870 [================================================================================>-----]  94%
  12058/12870 [================================================================================>-----]  94%
  12059/12870 [================================================================================>-----]  94%
  12060/12870 [================================================================================>-----]  94%
  12061/12870 [================================================================================>-----]  94%
  12062/12870 [================================================================================>-----]  94%
  12063/12870 [================================================================================>-----]  94%
  12064/12870 [================================================================================>-----]  94%
  12065/12870 [================================================================================>-----]  94%
  12066/12870 [================================================================================>-----]  94%
  12067/12870 [================================================================================>-----]  94%
  12068/12870 [================================================================================>-----]  94%
  12069/12870 [================================================================================>-----]  94%
  12070/12870 [================================================================================>-----]  94%
  12071/12870 [================================================================================>-----]  94%
  12072/12870 [================================================================================>-----]  94%
  12073/12870 [================================================================================>-----]  94%
  12074/12870 [================================================================================>-----]  94%
  12075/12870 [================================================================================>-----]  94%
  12076/12870 [================================================================================>-----]  94%
  12077/12870 [================================================================================>-----]  94%
  12078/12870 [================================================================================>-----]  94%
  12079/12870 [================================================================================>-----]  94%
  12080/12870 [================================================================================>-----]  94%
  12081/12870 [================================================================================>-----]  94%
  12082/12870 [================================================================================>-----]  94%
  12083/12870 [================================================================================>-----]  94%
  12084/12870 [================================================================================>-----]  94%
  12085/12870 [================================================================================>-----]  94%
  12086/12870 [================================================================================>-----]  94%
  12087/12870 [================================================================================>-----]  94%
  12088/12870 [================================================================================>-----]  94%
  12089/12870 [================================================================================>-----]  94%
  12090/12870 [================================================================================>-----]  94%
  12091/12870 [================================================================================>-----]  94%
  12092/12870 [================================================================================>-----]  94%
  12093/12870 [================================================================================>-----]  94%
  12094/12870 [================================================================================>-----]  94%
  12095/12870 [================================================================================>-----]  94%
  12096/12870 [================================================================================>-----]  94%
  12097/12870 [================================================================================>-----]  94%
  12098/12870 [================================================================================>-----]  94%
  12099/12870 [================================================================================>-----]  94%
  12100/12870 [================================================================================>-----]  94%
  12101/12870 [================================================================================>-----]  94%
  12102/12870 [================================================================================>-----]  94%
  12103/12870 [================================================================================>-----]  94%
  12104/12870 [================================================================================>-----]  94%
  12105/12870 [================================================================================>-----]  94%
  12106/12870 [================================================================================>-----]  94%
  12107/12870 [================================================================================>-----]  94%
  12108/12870 [================================================================================>-----]  94%
  12109/12870 [================================================================================>-----]  94%
  12110/12870 [================================================================================>-----]  94%
  12111/12870 [================================================================================>-----]  94%
  12112/12870 [================================================================================>-----]  94%
  12113/12870 [================================================================================>-----]  94%
  12114/12870 [================================================================================>-----]  94%
  12115/12870 [================================================================================>-----]  94%
  12116/12870 [================================================================================>-----]  94%
  12117/12870 [================================================================================>-----]  94%
  12118/12870 [================================================================================>-----]  94%
  12119/12870 [================================================================================>-----]  94%
  12120/12870 [================================================================================>-----]  94%
  12121/12870 [================================================================================>-----]  94%
  12122/12870 [================================================================================>-----]  94%
  12123/12870 [================================================================================>-----]  94%
  12124/12870 [================================================================================>-----]  94%
  12125/12870 [================================================================================>-----]  94%
  12126/12870 [================================================================================>-----]  94%
  12127/12870 [================================================================================>-----]  94%
  12128/12870 [================================================================================>-----]  94%
  12129/12870 [================================================================================>-----]  94%
  12130/12870 [================================================================================>-----]  94%
  12131/12870 [================================================================================>-----]  94%
  12132/12870 [================================================================================>-----]  94%
  12133/12870 [================================================================================>-----]  94%
  12134/12870 [================================================================================>-----]  94%
  12135/12870 [================================================================================>-----]  94%
  12136/12870 [================================================================================>-----]  94%
  12137/12870 [================================================================================>-----]  94%
  12138/12870 [================================================================================>-----]  94%
  12139/12870 [================================================================================>-----]  94%
  12140/12870 [================================================================================>-----]  94%
  12141/12870 [================================================================================>-----]  94%
  12142/12870 [================================================================================>-----]  94%
  12143/12870 [================================================================================>-----]  94%
  12144/12870 [================================================================================>-----]  94%
  12145/12870 [================================================================================>-----]  94%
  12146/12870 [================================================================================>-----]  94%
  12147/12870 [================================================================================>-----]  94%
  12148/12870 [================================================================================>-----]  94%
  12149/12870 [================================================================================>-----]  94%
  12150/12870 [================================================================================>-----]  94%
  12151/12870 [================================================================================>-----]  94%
  12152/12870 [================================================================================>-----]  94%
  12153/12870 [================================================================================>-----]  94%
  12154/12870 [================================================================================>-----]  94%
  12155/12870 [================================================================================>-----]  94%
  12156/12870 [================================================================================>-----]  94%
  12157/12870 [================================================================================>-----]  94%
  12158/12870 [================================================================================>-----]  94%
  12159/12870 [================================================================================>-----]  94%
  12160/12870 [================================================================================>-----]  94%
  12161/12870 [================================================================================>-----]  94%
  12162/12870 [================================================================================>-----]  94%
  12163/12870 [================================================================================>-----]  95%
  12164/12870 [================================================================================>-----]  95%
  12165/12870 [================================================================================>-----]  95%
  12166/12870 [================================================================================>-----]  95%
  12167/12870 [================================================================================>-----]  95%
  12168/12870 [================================================================================>-----]  95%
  12169/12870 [================================================================================>-----]  95%
  12170/12870 [================================================================================>-----]  95%
  12171/12870 [================================================================================>-----]  95%
  12172/12870 [================================================================================>-----]  95%
  12173/12870 [================================================================================>-----]  95%
  12174/12870 [================================================================================>-----]  95%
  12175/12870 [================================================================================>-----]  95%
  12176/12870 [================================================================================>-----]  95%
  12177/12870 [================================================================================>-----]  95%
  12178/12870 [================================================================================>-----]  95%
  12179/12870 [================================================================================>-----]  95%
  12180/12870 [================================================================================>-----]  95%
  12181/12870 [================================================================================>-----]  95%
  12182/12870 [================================================================================>-----]  95%
  12183/12870 [================================================================================>-----]  95%
  12184/12870 [================================================================================>-----]  95%
  12185/12870 [================================================================================>-----]  95%
  12186/12870 [================================================================================>-----]  95%
  12187/12870 [================================================================================>-----]  95%
  12188/12870 [================================================================================>-----]  95%
  12189/12870 [================================================================================>-----]  95%
  12190/12870 [================================================================================>-----]  95%
  12191/12870 [================================================================================>-----]  95%
  12192/12870 [================================================================================>-----]  95%
  12193/12870 [================================================================================>-----]  95%
  12194/12870 [================================================================================>-----]  95%
  12195/12870 [================================================================================>-----]  95%
  12196/12870 [================================================================================>-----]  95%
  12197/12870 [=================================================================================>----]  95%
  12198/12870 [=================================================================================>----]  95%
  12199/12870 [=================================================================================>----]  95%
  12200/12870 [=================================================================================>----]  95%
  12201/12870 [=================================================================================>----]  95%
  12202/12870 [=================================================================================>----]  95%
  12203/12870 [=================================================================================>----]  95%
  12204/12870 [=================================================================================>----]  95%
  12205/12870 [=================================================================================>----]  95%
  12206/12870 [=================================================================================>----]  95%
  12207/12870 [=================================================================================>----]  95%
  12208/12870 [=================================================================================>----]  95%
  12209/12870 [=================================================================================>----]  95%
  12210/12870 [=================================================================================>----]  95%
  12211/12870 [=================================================================================>----]  95%
  12212/12870 [=================================================================================>----]  95%
  12213/12870 [=================================================================================>----]  95%
  12214/12870 [=================================================================================>----]  95%
  12215/12870 [=================================================================================>----]  95%
  12216/12870 [=================================================================================>----]  95%
  12217/12870 [=================================================================================>----]  95%
  12218/12870 [=================================================================================>----]  95%
  12219/12870 [=================================================================================>----]  95%
  12220/12870 [=================================================================================>----]  95%
  12221/12870 [=================================================================================>----]  95%
  12222/12870 [=================================================================================>----]  95%
  12223/12870 [=================================================================================>----]  95%
  12224/12870 [=================================================================================>----]  95%
  12225/12870 [=================================================================================>----]  95%
  12226/12870 [=================================================================================>----]  95%
  12227/12870 [=================================================================================>----]  95%
  12228/12870 [=================================================================================>----]  95%
  12229/12870 [=================================================================================>----]  95%
  12230/12870 [=================================================================================>----]  95%
  12231/12870 [=================================================================================>----]  95%
  12232/12870 [=================================================================================>----]  95%
  12233/12870 [=================================================================================>----]  95%
  12234/12870 [=================================================================================>----]  95%
  12235/12870 [=================================================================================>----]  95%
  12236/12870 [=================================================================================>----]  95%
  12237/12870 [=================================================================================>----]  95%
  12238/12870 [=================================================================================>----]  95%
  12239/12870 [=================================================================================>----]  95%
  12240/12870 [=================================================================================>----]  95%
  12241/12870 [=================================================================================>----]  95%
  12242/12870 [=================================================================================>----]  95%
  12243/12870 [=================================================================================>----]  95%
  12244/12870 [=================================================================================>----]  95%
  12245/12870 [=================================================================================>----]  95%
  12246/12870 [=================================================================================>----]  95%
  12247/12870 [=================================================================================>----]  95%
  12248/12870 [=================================================================================>----]  95%
  12249/12870 [=================================================================================>----]  95%
  12250/12870 [=================================================================================>----]  95%
  12251/12870 [=================================================================================>----]  95%
  12252/12870 [=================================================================================>----]  95%
  12253/12870 [=================================================================================>----]  95%
  12254/12870 [=================================================================================>----]  95%
  12255/12870 [=================================================================================>----]  95%
  12256/12870 [=================================================================================>----]  95%
  12257/12870 [=================================================================================>----]  95%
  12258/12870 [=================================================================================>----]  95%
  12259/12870 [=================================================================================>----]  95%
  12260/12870 [=================================================================================>----]  95%
  12261/12870 [=================================================================================>----]  95%
  12262/12870 [=================================================================================>----]  95%
  12263/12870 [=================================================================================>----]  95%
  12264/12870 [=================================================================================>----]  95%
  12265/12870 [=================================================================================>----]  95%
  12266/12870 [=================================================================================>----]  95%
  12267/12870 [=================================================================================>----]  95%
  12268/12870 [=================================================================================>----]  95%
  12269/12870 [=================================================================================>----]  95%
  12270/12870 [=================================================================================>----]  95%
  12271/12870 [=================================================================================>----]  95%
  12272/12870 [=================================================================================>----]  95%
  12273/12870 [=================================================================================>----]  95%
  12274/12870 [=================================================================================>----]  95%
  12275/12870 [=================================================================================>----]  95%
  12276/12870 [=================================================================================>----]  95%
  12277/12870 [=================================================================================>----]  95%
  12278/12870 [=================================================================================>----]  95%
  12279/12870 [=================================================================================>----]  95%
  12280/12870 [=================================================================================>----]  95%
  12281/12870 [=================================================================================>----]  95%
  12282/12870 [=================================================================================>----]  95%
  12283/12870 [=================================================================================>----]  95%
  12284/12870 [=================================================================================>----]  95%
  12285/12870 [=================================================================================>----]  95%
  12286/12870 [=================================================================================>----]  95%
  12287/12870 [=================================================================================>----]  95%
  12288/12870 [=================================================================================>----]  95%
  12289/12870 [=================================================================================>----]  95%
  12290/12870 [=================================================================================>----]  95%
  12291/12870 [=================================================================================>----]  96%
  12292/12870 [=================================================================================>----]  96%
  12293/12870 [=================================================================================>----]  96%
  12294/12870 [=================================================================================>----]  96%
  12295/12870 [=================================================================================>----]  96%
  12296/12870 [=================================================================================>----]  96%
  12297/12870 [=================================================================================>----]  96%
  12298/12870 [=================================================================================>----]  96%
  12299/12870 [=================================================================================>----]  96%
  12300/12870 [=================================================================================>----]  96%
  12301/12870 [=================================================================================>----]  96%
  12302/12870 [=================================================================================>----]  96%
  12303/12870 [=================================================================================>----]  96%
  12304/12870 [=================================================================================>----]  96%
  12305/12870 [=================================================================================>----]  96%
  12306/12870 [=================================================================================>----]  96%
  12307/12870 [=================================================================================>----]  96%
  12308/12870 [=================================================================================>----]  96%
  12309/12870 [=================================================================================>----]  96%
  12310/12870 [=================================================================================>----]  96%
  12311/12870 [=================================================================================>----]  96%
  12312/12870 [=================================================================================>----]  96%
  12313/12870 [=================================================================================>----]  96%
  12314/12870 [=================================================================================>----]  96%
  12315/12870 [=================================================================================>----]  96%
  12316/12870 [=================================================================================>----]  96%
  12317/12870 [=================================================================================>----]  96%
  12318/12870 [=================================================================================>----]  96%
  12319/12870 [=================================================================================>----]  96%
  12320/12870 [=================================================================================>----]  96%
  12321/12870 [=================================================================================>----]  96%
  12322/12870 [=================================================================================>----]  96%
  12323/12870 [=================================================================================>----]  96%
  12324/12870 [=================================================================================>----]  96%
  12325/12870 [=================================================================================>----]  96%
  12326/12870 [=================================================================================>----]  96%
  12327/12870 [=================================================================================>----]  96%
  12328/12870 [=================================================================================>----]  96%
  12329/12870 [=================================================================================>----]  96%
  12330/12870 [=================================================================================>----]  96%
  12331/12870 [=================================================================================>----]  96%
  12332/12870 [=================================================================================>----]  96%
  12333/12870 [=================================================================================>----]  96%
  12334/12870 [=================================================================================>----]  96%
  12335/12870 [=================================================================================>----]  96%
  12336/12870 [=================================================================================>----]  96%
  12337/12870 [=================================================================================>----]  96%
  12338/12870 [=================================================================================>----]  96%
  12339/12870 [=================================================================================>----]  96%
  12340/12870 [=================================================================================>----]  96%
  12341/12870 [=================================================================================>----]  96%
  12342/12870 [=================================================================================>----]  96%
  12343/12870 [=================================================================================>----]  96%
  12344/12870 [=================================================================================>----]  96%
  12345/12870 [=================================================================================>----]  96%
  12346/12870 [=================================================================================>----]  96%
  12347/12870 [==================================================================================>---]  96%
  12348/12870 [==================================================================================>---]  96%
  12349/12870 [==================================================================================>---]  96%
  12350/12870 [==================================================================================>---]  96%
  12351/12870 [==================================================================================>---]  96%
  12352/12870 [==================================================================================>---]  96%
  12353/12870 [==================================================================================>---]  96%
  12354/12870 [==================================================================================>---]  96%
  12355/12870 [==================================================================================>---]  96%
  12356/12870 [==================================================================================>---]  96%
  12357/12870 [==================================================================================>---]  96%
  12358/12870 [==================================================================================>---]  96%
  12359/12870 [==================================================================================>---]  96%
  12360/12870 [==================================================================================>---]  96%
  12361/12870 [==================================================================================>---]  96%
  12362/12870 [==================================================================================>---]  96%
  12363/12870 [==================================================================================>---]  96%
  12364/12870 [==================================================================================>---]  96%
  12365/12870 [==================================================================================>---]  96%
  12366/12870 [==================================================================================>---]  96%
  12367/12870 [==================================================================================>---]  96%
  12368/12870 [==================================================================================>---]  96%
  12369/12870 [==================================================================================>---]  96%
  12370/12870 [==================================================================================>---]  96%
  12371/12870 [==================================================================================>---]  96%
  12372/12870 [==================================================================================>---]  96%
  12373/12870 [==================================================================================>---]  96%
  12374/12870 [==================================================================================>---]  96%
  12375/12870 [==================================================================================>---]  96%
  12376/12870 [==================================================================================>---]  96%
  12377/12870 [==================================================================================>---]  96%
  12378/12870 [==================================================================================>---]  96%
  12379/12870 [==================================================================================>---]  96%
  12380/12870 [==================================================================================>---]  96%
  12381/12870 [==================================================================================>---]  96%
  12382/12870 [==================================================================================>---]  96%
  12383/12870 [==================================================================================>---]  96%
  12384/12870 [==================================================================================>---]  96%
  12385/12870 [==================================================================================>---]  96%
  12386/12870 [==================================================================================>---]  96%
  12387/12870 [==================================================================================>---]  96%
  12388/12870 [==================================================================================>---]  96%
  12389/12870 [==================================================================================>---]  96%
  12390/12870 [==================================================================================>---]  96%
  12391/12870 [==================================================================================>---]  96%
  12392/12870 [==================================================================================>---]  96%
  12393/12870 [==================================================================================>---]  96%
  12394/12870 [==================================================================================>---]  96%
  12395/12870 [==================================================================================>---]  96%
  12396/12870 [==================================================================================>---]  96%
  12397/12870 [==================================================================================>---]  96%
  12398/12870 [==================================================================================>---]  96%
  12399/12870 [==================================================================================>---]  96%
  12400/12870 [==================================================================================>---]  96%
  12401/12870 [==================================================================================>---]  96%
  12402/12870 [==================================================================================>---]  96%
  12403/12870 [==================================================================================>---]  96%
  12404/12870 [==================================================================================>---]  96%
  12405/12870 [==================================================================================>---]  96%
  12406/12870 [==================================================================================>---]  96%
  12407/12870 [==================================================================================>---]  96%
  12408/12870 [==================================================================================>---]  96%
  12409/12870 [==================================================================================>---]  96%
  12410/12870 [==================================================================================>---]  96%
  12411/12870 [==================================================================================>---]  96%
  12412/12870 [==================================================================================>---]  96%
  12413/12870 [==================================================================================>---]  96%
  12414/12870 [==================================================================================>---]  96%
  12415/12870 [==================================================================================>---]  96%
  12416/12870 [==================================================================================>---]  96%
  12417/12870 [==================================================================================>---]  96%
  12418/12870 [==================================================================================>---]  96%
  12419/12870 [==================================================================================>---]  96%
  12420/12870 [==================================================================================>---]  97%
  12421/12870 [==================================================================================>---]  97%
  12422/12870 [==================================================================================>---]  97%
  12423/12870 [==================================================================================>---]  97%
  12424/12870 [==================================================================================>---]  97%
  12425/12870 [==================================================================================>---]  97%
  12426/12870 [==================================================================================>---]  97%
  12427/12870 [==================================================================================>---]  97%
  12428/12870 [==================================================================================>---]  97%
  12429/12870 [==================================================================================>---]  97%
  12430/12870 [==================================================================================>---]  97%
  12431/12870 [==================================================================================>---]  97%
  12432/12870 [==================================================================================>---]  97%
  12433/12870 [==================================================================================>---]  97%
  12434/12870 [==================================================================================>---]  97%
  12435/12870 [==================================================================================>---]  97%
  12436/12870 [==================================================================================>---]  97%
  12437/12870 [==================================================================================>---]  97%
  12438/12870 [==================================================================================>---]  97%
  12439/12870 [==================================================================================>---]  97%
  12440/12870 [==================================================================================>---]  97%
  12441/12870 [==================================================================================>---]  97%
  12442/12870 [==================================================================================>---]  97%
  12443/12870 [==================================================================================>---]  97%
  12444/12870 [==================================================================================>---]  97%
  12445/12870 [==================================================================================>---]  97%
  12446/12870 [==================================================================================>---]  97%
  12447/12870 [==================================================================================>---]  97%
  12448/12870 [==================================================================================>---]  97%
  12449/12870 [==================================================================================>---]  97%
  12450/12870 [==================================================================================>---]  97%
  12451/12870 [==================================================================================>---]  97%
  12452/12870 [==================================================================================>---]  97%
  12453/12870 [==================================================================================>---]  97%
  12454/12870 [==================================================================================>---]  97%
  12455/12870 [==================================================================================>---]  97%
  12456/12870 [==================================================================================>---]  97%
  12457/12870 [==================================================================================>---]  97%
  12458/12870 [==================================================================================>---]  97%
  12459/12870 [==================================================================================>---]  97%
  12460/12870 [==================================================================================>---]  97%
  12461/12870 [==================================================================================>---]  97%
  12462/12870 [==================================================================================>---]  97%
  12463/12870 [==================================================================================>---]  97%
  12464/12870 [==================================================================================>---]  97%
  12465/12870 [==================================================================================>---]  97%
  12466/12870 [==================================================================================>---]  97%
  12467/12870 [==================================================================================>---]  97%
  12468/12870 [==================================================================================>---]  97%
  12469/12870 [==================================================================================>---]  97%
  12470/12870 [==================================================================================>---]  97%
  12471/12870 [==================================================================================>---]  97%
  12472/12870 [==================================================================================>---]  97%
  12473/12870 [==================================================================================>---]  97%
  12474/12870 [==================================================================================>---]  97%
  12475/12870 [==================================================================================>---]  97%
  12476/12870 [==================================================================================>---]  97%
  12477/12870 [==================================================================================>---]  97%
  12478/12870 [==================================================================================>---]  97%
  12479/12870 [==================================================================================>---]  97%
  12480/12870 [==================================================================================>---]  97%
  12481/12870 [==================================================================================>---]  97%
  12482/12870 [==================================================================================>---]  97%
  12483/12870 [==================================================================================>---]  97%
  12484/12870 [==================================================================================>---]  97%
  12485/12870 [==================================================================================>---]  97%
  12486/12870 [==================================================================================>---]  97%
  12487/12870 [==================================================================================>---]  97%
  12488/12870 [==================================================================================>---]  97%
  12489/12870 [==================================================================================>---]  97%
  12490/12870 [==================================================================================>---]  97%
  12491/12870 [==================================================================================>---]  97%
  12492/12870 [==================================================================================>---]  97%
  12493/12870 [==================================================================================>---]  97%
  12494/12870 [==================================================================================>---]  97%
  12495/12870 [==================================================================================>---]  97%
  12496/12870 [===================================================================================>--]  97%
  12497/12870 [===================================================================================>--]  97%
  12498/12870 [===================================================================================>--]  97%
  12499/12870 [===================================================================================>--]  97%
  12500/12870 [===================================================================================>--]  97%
  12501/12870 [===================================================================================>--]  97%
  12502/12870 [===================================================================================>--]  97%
  12503/12870 [===================================================================================>--]  97%
  12504/12870 [===================================================================================>--]  97%
  12505/12870 [===================================================================================>--]  97%
  12506/12870 [===================================================================================>--]  97%
  12507/12870 [===================================================================================>--]  97%
  12508/12870 [===================================================================================>--]  97%
  12509/12870 [===================================================================================>--]  97%
  12510/12870 [===================================================================================>--]  97%
  12511/12870 [===================================================================================>--]  97%
  12512/12870 [===================================================================================>--]  97%
  12513/12870 [===================================================================================>--]  97%
  12514/12870 [===================================================================================>--]  97%
  12515/12870 [===================================================================================>--]  97%
  12516/12870 [===================================================================================>--]  97%
  12517/12870 [===================================================================================>--]  97%
  12518/12870 [===================================================================================>--]  97%
  12519/12870 [===================================================================================>--]  97%
  12520/12870 [===================================================================================>--]  97%
  12521/12870 [===================================================================================>--]  97%
  12522/12870 [===================================================================================>--]  97%
  12523/12870 [===================================================================================>--]  97%
  12524/12870 [===================================================================================>--]  97%
  12525/12870 [===================================================================================>--]  97%
  12526/12870 [===================================================================================>--]  97%
  12527/12870 [===================================================================================>--]  97%
  12528/12870 [===================================================================================>--]  97%
  12529/12870 [===================================================================================>--]  97%
  12530/12870 [===================================================================================>--]  97%
  12531/12870 [===================================================================================>--]  97%
  12532/12870 [===================================================================================>--]  97%
  12533/12870 [===================================================================================>--]  97%
  12534/12870 [===================================================================================>--]  97%
  12535/12870 [===================================================================================>--]  97%
  12536/12870 [===================================================================================>--]  97%
  12537/12870 [===================================================================================>--]  97%
  12538/12870 [===================================================================================>--]  97%
  12539/12870 [===================================================================================>--]  97%
  12540/12870 [===================================================================================>--]  97%
  12541/12870 [===================================================================================>--]  97%
  12542/12870 [===================================================================================>--]  97%
  12543/12870 [===================================================================================>--]  97%
  12544/12870 [===================================================================================>--]  97%
  12545/12870 [===================================================================================>--]  97%
  12546/12870 [===================================================================================>--]  97%
  12547/12870 [===================================================================================>--]  97%
  12548/12870 [===================================================================================>--]  97%
  12549/12870 [===================================================================================>--]  98%
  12550/12870 [===================================================================================>--]  98%
  12551/12870 [===================================================================================>--]  98%
  12552/12870 [===================================================================================>--]  98%
  12553/12870 [===================================================================================>--]  98%
  12554/12870 [===================================================================================>--]  98%
  12555/12870 [===================================================================================>--]  98%
  12556/12870 [===================================================================================>--]  98%
  12557/12870 [===================================================================================>--]  98%
  12558/12870 [===================================================================================>--]  98%
  12559/12870 [===================================================================================>--]  98%
  12560/12870 [===================================================================================>--]  98%
  12561/12870 [===================================================================================>--]  98%
  12562/12870 [===================================================================================>--]  98%
  12563/12870 [===================================================================================>--]  98%
  12564/12870 [===================================================================================>--]  98%
  12565/12870 [===================================================================================>--]  98%
  12566/12870 [===================================================================================>--]  98%
  12567/12870 [===================================================================================>--]  98%
  12568/12870 [===================================================================================>--]  98%
  12569/12870 [===================================================================================>--]  98%
  12570/12870 [===================================================================================>--]  98%
  12571/12870 [===================================================================================>--]  98%
  12572/12870 [===================================================================================>--]  98%
  12573/12870 [===================================================================================>--]  98%
  12574/12870 [===================================================================================>--]  98%
  12575/12870 [===================================================================================>--]  98%
  12576/12870 [===================================================================================>--]  98%
  12577/12870 [===================================================================================>--]  98%
  12578/12870 [===================================================================================>--]  98%
  12579/12870 [===================================================================================>--]  98%
  12580/12870 [===================================================================================>--]  98%
  12581/12870 [===================================================================================>--]  98%
  12582/12870 [===================================================================================>--]  98%
  12583/12870 [===================================================================================>--]  98%
  12584/12870 [===================================================================================>--]  98%
  12585/12870 [===================================================================================>--]  98%
  12586/12870 [===================================================================================>--]  98%
  12587/12870 [===================================================================================>--]  98%
  12588/12870 [===================================================================================>--]  98%
  12589/12870 [===================================================================================>--]  98%
  12590/12870 [===================================================================================>--]  98%
  12591/12870 [===================================================================================>--]  98%
  12592/12870 [===================================================================================>--]  98%
  12593/12870 [===================================================================================>--]  98%
  12594/12870 [===================================================================================>--]  98%
  12595/12870 [===================================================================================>--]  98%
  12596/12870 [===================================================================================>--]  98%
  12597/12870 [===================================================================================>--]  98%
  12598/12870 [===================================================================================>--]  98%
  12599/12870 [===================================================================================>--]  98%
  12600/12870 [===================================================================================>--]  98%
  12601/12870 [===================================================================================>--]  98%
  12602/12870 [===================================================================================>--]  98%
  12603/12870 [===================================================================================>--]  98%
  12604/12870 [===================================================================================>--]  98%
  12605/12870 [===================================================================================>--]  98%
  12606/12870 [===================================================================================>--]  98%
  12607/12870 [===================================================================================>--]  98%
  12608/12870 [===================================================================================>--]  98%
  12609/12870 [===================================================================================>--]  98%
  12610/12870 [===================================================================================>--]  98%
  12611/12870 [===================================================================================>--]  98%
  12612/12870 [===================================================================================>--]  98%
  12613/12870 [===================================================================================>--]  98%
  12614/12870 [===================================================================================>--]  98%
  12615/12870 [===================================================================================>--]  98%
  12616/12870 [===================================================================================>--]  98%
  12617/12870 [===================================================================================>--]  98%
  12618/12870 [===================================================================================>--]  98%
  12619/12870 [===================================================================================>--]  98%
  12620/12870 [===================================================================================>--]  98%
  12621/12870 [===================================================================================>--]  98%
  12622/12870 [===================================================================================>--]  98%
  12623/12870 [===================================================================================>--]  98%
  12624/12870 [===================================================================================>--]  98%
  12625/12870 [===================================================================================>--]  98%
  12626/12870 [===================================================================================>--]  98%
  12627/12870 [===================================================================================>--]  98%
  12628/12870 [===================================================================================>--]  98%
  12629/12870 [===================================================================================>--]  98%
  12630/12870 [===================================================================================>--]  98%
  12631/12870 [===================================================================================>--]  98%
  12632/12870 [===================================================================================>--]  98%
  12633/12870 [===================================================================================>--]  98%
  12634/12870 [===================================================================================>--]  98%
  12635/12870 [===================================================================================>--]  98%
  12636/12870 [===================================================================================>--]  98%
  12637/12870 [===================================================================================>--]  98%
  12638/12870 [===================================================================================>--]  98%
  12639/12870 [===================================================================================>--]  98%
  12640/12870 [===================================================================================>--]  98%
  12641/12870 [===================================================================================>--]  98%
  12642/12870 [===================================================================================>--]  98%
  12643/12870 [===================================================================================>--]  98%
  12644/12870 [===================================================================================>--]  98%
  12645/12870 [===================================================================================>--]  98%
  12646/12870 [====================================================================================>-]  98%
  12647/12870 [====================================================================================>-]  98%
  12648/12870 [====================================================================================>-]  98%
  12649/12870 [====================================================================================>-]  98%
  12650/12870 [====================================================================================>-]  98%
  12651/12870 [====================================================================================>-]  98%
  12652/12870 [====================================================================================>-]  98%
  12653/12870 [====================================================================================>-]  98%
  12654/12870 [====================================================================================>-]  98%
  12655/12870 [====================================================================================>-]  98%
  12656/12870 [====================================================================================>-]  98%
  12657/12870 [====================================================================================>-]  98%
  12658/12870 [====================================================================================>-]  98%
  12659/12870 [====================================================================================>-]  98%
  12660/12870 [====================================================================================>-]  98%
  12661/12870 [====================================================================================>-]  98%
  12662/12870 [====================================================================================>-]  98%
  12663/12870 [====================================================================================>-]  98%
  12664/12870 [====================================================================================>-]  98%
  12665/12870 [====================================================================================>-]  98%
  12666/12870 [====================================================================================>-]  98%
  12667/12870 [====================================================================================>-]  98%
  12668/12870 [====================================================================================>-]  98%
  12669/12870 [====================================================================================>-]  98%
  12670/12870 [====================================================================================>-]  98%
  12671/12870 [====================================================================================>-]  98%
  12672/12870 [====================================================================================>-]  98%
  12673/12870 [====================================================================================>-]  98%
  12674/12870 [====================================================================================>-]  98%
  12675/12870 [====================================================================================>-]  98%
  12676/12870 [====================================================================================>-]  98%
  12677/12870 [====================================================================================>-]  99%
  12678/12870 [====================================================================================>-]  99%
  12679/12870 [====================================================================================>-]  99%
  12680/12870 [====================================================================================>-]  99%
  12681/12870 [====================================================================================>-]  99%
  12682/12870 [====================================================================================>-]  99%
  12683/12870 [====================================================================================>-]  99%
  12684/12870 [====================================================================================>-]  99%
  12685/12870 [====================================================================================>-]  99%
  12686/12870 [====================================================================================>-]  99%
  12687/12870 [====================================================================================>-]  99%
  12688/12870 [====================================================================================>-]  99%
  12689/12870 [====================================================================================>-]  99%
  12690/12870 [====================================================================================>-]  99%
  12691/12870 [====================================================================================>-]  99%
  12692/12870 [====================================================================================>-]  99%
  12693/12870 [====================================================================================>-]  99%
  12694/12870 [====================================================================================>-]  99%
  12695/12870 [====================================================================================>-]  99%
  12696/12870 [====================================================================================>-]  99%
  12697/12870 [====================================================================================>-]  99%
  12698/12870 [====================================================================================>-]  99%
  12699/12870 [====================================================================================>-]  99%
  12700/12870 [====================================================================================>-]  99%
  12701/12870 [====================================================================================>-]  99%
  12702/12870 [====================================================================================>-]  99%
  12703/12870 [====================================================================================>-]  99%
  12704/12870 [====================================================================================>-]  99%
  12705/12870 [====================================================================================>-]  99%
  12706/12870 [====================================================================================>-]  99%
  12707/12870 [====================================================================================>-]  99%
  12708/12870 [====================================================================================>-]  99%
  12709/12870 [====================================================================================>-]  99%
  12710/12870 [====================================================================================>-]  99%
  12711/12870 [====================================================================================>-]  99%
  12712/12870 [====================================================================================>-]  99%
  12713/12870 [====================================================================================>-]  99%
  12714/12870 [====================================================================================>-]  99%
  12715/12870 [====================================================================================>-]  99%
  12716/12870 [====================================================================================>-]  99%
  12717/12870 [====================================================================================>-]  99%
  12718/12870 [====================================================================================>-]  99%
  12719/12870 [====================================================================================>-]  99%
  12720/12870 [====================================================================================>-]  99%
  12721/12870 [====================================================================================>-]  99%
  12722/12870 [====================================================================================>-]  99%
  12723/12870 [====================================================================================>-]  99%
  12724/12870 [====================================================================================>-]  99%
  12725/12870 [====================================================================================>-]  99%
  12726/12870 [====================================================================================>-]  99%
  12727/12870 [====================================================================================>-]  99%
  12728/12870 [====================================================================================>-]  99%
  12729/12870 [====================================================================================>-]  99%
  12730/12870 [====================================================================================>-]  99%
  12731/12870 [====================================================================================>-]  99%
  12732/12870 [====================================================================================>-]  99%
  12733/12870 [====================================================================================>-]  99%
  12734/12870 [====================================================================================>-]  99%
  12735/12870 [====================================================================================>-]  99%
  12736/12870 [====================================================================================>-]  99%
  12737/12870 [====================================================================================>-]  99%
  12738/12870 [====================================================================================>-]  99%
  12739/12870 [====================================================================================>-]  99%
  12740/12870 [====================================================================================>-]  99%
  12741/12870 [====================================================================================>-]  99%
  12742/12870 [====================================================================================>-]  99%
  12743/12870 [====================================================================================>-]  99%
  12744/12870 [====================================================================================>-]  99%
  12745/12870 [====================================================================================>-]  99%
  12746/12870 [====================================================================================>-]  99%
  12747/12870 [====================================================================================>-]  99%
  12748/12870 [====================================================================================>-]  99%
  12749/12870 [====================================================================================>-]  99%
  12750/12870 [====================================================================================>-]  99%
  12751/12870 [====================================================================================>-]  99%
  12752/12870 [====================================================================================>-]  99%
  12753/12870 [====================================================================================>-]  99%
  12754/12870 [====================================================================================>-]  99%
  12755/12870 [====================================================================================>-]  99%
  12756/12870 [====================================================================================>-]  99%
  12757/12870 [====================================================================================>-]  99%
  12758/12870 [====================================================================================>-]  99%
  12759/12870 [====================================================================================>-]  99%
  12760/12870 [====================================================================================>-]  99%
  12761/12870 [====================================================================================>-]  99%
  12762/12870 [====================================================================================>-]  99%
  12763/12870 [====================================================================================>-]  99%
  12764/12870 [====================================================================================>-]  99%
  12765/12870 [====================================================================================>-]  99%
  12766/12870 [====================================================================================>-]  99%
  12767/12870 [====================================================================================>-]  99%
  12768/12870 [====================================================================================>-]  99%
  12769/12870 [====================================================================================>-]  99%
  12770/12870 [====================================================================================>-]  99%
  12771/12870 [====================================================================================>-]  99%
  12772/12870 [====================================================================================>-]  99%
  12773/12870 [====================================================================================>-]  99%
  12774/12870 [====================================================================================>-]  99%
  12775/12870 [====================================================================================>-]  99%
  12776/12870 [====================================================================================>-]  99%
  12777/12870 [====================================================================================>-]  99%
  12778/12870 [====================================================================================>-]  99%
  12779/12870 [====================================================================================>-]  99%
  12780/12870 [====================================================================================>-]  99%
  12781/12870 [====================================================================================>-]  99%
  12782/12870 [====================================================================================>-]  99%
  12783/12870 [====================================================================================>-]  99%
  12784/12870 [====================================================================================>-]  99%
  12785/12870 [====================================================================================>-]  99%
  12786/12870 [====================================================================================>-]  99%
  12787/12870 [====================================================================================>-]  99%
  12788/12870 [====================================================================================>-]  99%
  12789/12870 [====================================================================================>-]  99%
  12790/12870 [====================================================================================>-]  99%
  12791/12870 [====================================================================================>-]  99%
  12792/12870 [====================================================================================>-]  99%
  12793/12870 [====================================================================================>-]  99%
  12794/12870 [====================================================================================>-]  99%
  12795/12870 [====================================================================================>-]  99%
  12796/12870 [=====================================================================================>]  99%
  12797/12870 [=====================================================================================>]  99%
  12798/12870 [=====================================================================================>]  99%
  12799/12870 [=====================================================================================>]  99%
  12800/12870 [=====================================================================================>]  99%
  12801/12870 [=====================================================================================>]  99%
  12802/12870 [=====================================================================================>]  99%
  12803/12870 [=====================================================================================>]  99%
  12804/12870 [=====================================================================================>]  99%
  12805/12870 [=====================================================================================>]  99%
  12806/12870 [=====================================================================================>] 100%
  12807/12870 [=====================================================================================>] 100%
  12808/12870 [=====================================================================================>] 100%
  12809/12870 [=====================================================================================>] 100%
  12810/12870 [=====================================================================================>] 100%
  12811/12870 [=====================================================================================>] 100%
  12812/12870 [=====================================================================================>] 100%
  12813/12870 [=====================================================================================>] 100%
  12814/12870 [=====================================================================================>] 100%
  12815/12870 [=====================================================================================>] 100%
  12816/12870 [=====================================================================================>] 100%
  12817/12870 [=====================================================================================>] 100%
  12818/12870 [=====================================================================================>] 100%
  12819/12870 [=====================================================================================>] 100%
  12820/12870 [=====================================================================================>] 100%
  12821/12870 [=====================================================================================>] 100%
  12822/12870 [=====================================================================================>] 100%
  12823/12870 [=====================================================================================>] 100%
  12824/12870 [=====================================================================================>] 100%
  12825/12870 [=====================================================================================>] 100%
  12826/12870 [=====================================================================================>] 100%
  12827/12870 [=====================================================================================>] 100%
  12828/12870 [=====================================================================================>] 100%
  12829/12870 [=====================================================================================>] 100%
  12830/12870 [=====================================================================================>] 100%
  12831/12870 [=====================================================================================>] 100%
  12832/12870 [=====================================================================================>] 100%
  12833/12870 [=====================================================================================>] 100%
  12834/12870 [=====================================================================================>] 100%
  12835/12870 [=====================================================================================>] 100%
  12836/12870 [=====================================================================================>] 100%
  12837/12870 [=====================================================================================>] 100%
  12838/12870 [=====================================================================================>] 100%
  12839/12870 [=====================================================================================>] 100%
  12840/12870 [=====================================================================================>] 100%
  12841/12870 [=====================================================================================>] 100%
  12842/12870 [=====================================================================================>] 100%
  12843/12870 [=====================================================================================>] 100%
  12844/12870 [=====================================================================================>] 100%
  12845/12870 [=====================================================================================>] 100%
  12846/12870 [=====================================================================================>] 100%
  12847/12870 [=====================================================================================>] 100%
  12848/12870 [=====================================================================================>] 100%
  12849/12870 [=====================================================================================>] 100%
  12850/12870 [=====================================================================================>] 100%
  12851/12870 [=====================================================================================>] 100%
  12852/12870 [=====================================================================================>] 100%
  12853/12870 [=====================================================================================>] 100%
  12854/12870 [=====================================================================================>] 100%
  12855/12870 [=====================================================================================>] 100%
  12856/12870 [=====================================================================================>] 100%
  12857/12870 [=====================================================================================>] 100%
  12858/12870 [=====================================================================================>] 100%
  12859/12870 [=====================================================================================>] 100%
  12860/12870 [=====================================================================================>] 100%
  12861/12870 [=====================================================================================>] 100%
  12862/12870 [=====================================================================================>] 100%
  12863/12870 [=====================================================================================>] 100%
  12864/12870 [=====================================================================================>] 100%
  12865/12870 [=====================================================================================>] 100%
  12866/12870 [=====================================================================================>] 100%
  12867/12870 [=====================================================================================>] 100%
  12868/12870 [=====================================================================================>] 100%
  12869/12870 [=====================================================================================>] 100%
  12870/12870 [======================================================================================] 100%
# Print the first few rows of the results dataframe
head(results_df)
#Plotting null randomization distribution

library(ggplot2)

ggplot(results_df, aes(x = treatment_effect)) +
  geom_histogram(binwidth = 0.020, fill = "blue", color = "black", alpha = 0.7) +
  labs(title = "Histogram of 12,870 Test Statistics", x = "Difference of Means", y = "Frequency") +
  theme_minimal() +
  theme(plot.title = element_text(hjust = 0.5)) +
  geom_vline(xintercept = -0.1575,color='red') +
  annotate("text", x = -0.215, y = 750, label = "Observed Test Statistic",size=2.65) 

# Getting p-value of observed test statistic

extreme_count <- sum(results_df$treatment_effect <= -0.1575)
p_value = extreme_count/length(results_df$treatment_effect)
p_value
[1] 0.04662005
# Calculating treatment effects by block to get observed test statistic

library(readr)
d=read_csv("https://bit.ly/2SKjUn2")
Rows: 16 Columns: 5── Column specification ─────────────────────────────────────────────────────────────────────────────────────
Delimiter: ","
chr (1): treat
dbl (4): id, block, reg_voters, vote_pop
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
treatment=numeric(length(d$treat))
treatment[d$treat=="pub.pol"]=1
by_block <- d %>% group_by(block)
treatment_effects <- (by_block %>% summarise(treatment = diff(vote_pop)))$treatment
treatment_effects
[1] -0.21 -0.05 -0.01 -0.56 -0.01 -0.14 -0.10 -0.18
mean(treatment_effects)
[1] -0.1575
# Extra credit

library(gtools)
Warning: package ‘gtools’ was built under R version 4.3.2
library(progress)
library(readr)
d=read_csv("https://bit.ly/2SKjUn2")
Rows: 16 Columns: 5── Column specification ─────────────────────────────────────────────────────────────────────────────────────
Delimiter: ","
chr (1): treat
dbl (4): id, block, reg_voters, vote_pop
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
treatment=numeric(length(d$treat))
treatment[d$treat=="pub.pol"]=1

# Function to replace 'A' with (0,1) and 'B' with (1,0)
replace_pairs <- function(permutation) {
  sapply(permutation, function(x) {
    if (x == 'A') {
      return(c(0, 1))
    } else {
      return(c(1, 0))
    }
  })
}

# Generate all permutations
perm_strings <- permutations(n = 2, r = 8, v = c('A', 'B'), repeats.allowed = TRUE)

# Apply the replacement function to each permutation, transpose to have rows
# as the treatment/control permutation
block_permutations <- t(apply(perm_strings, 1, replace_pairs))



library(progress)
calculate_treatment_effect <- function(df) {
  mean(df$vote_pop[df$treat == 1]) - mean(df$vote_pop[df$treat == 0])}
block_results_df <- data.frame(permutation = integer(256), treatment_effect = numeric(256))

pb <- progress_bar$new(total = dim(block_permutations)[1], clear = FALSE, format = "  :current/:total [:bar] :percent")

# Iterate over each permutation and calculate treatment effect
for (i in 1:nrow(block_permutations)) {
  pb$tick()
  
  # Update the 'treat' column in the dataframe
  d$treat <- block_permutations[i,]

  # Calculate the treatment effect for this permutation
  treatment_effect <- calculate_treatment_effect(d)

  # Store the permutation and its treatment effect
  block_results_df[i, ] <- list(permutation = paste(block_permutations[i,], collapse = ""), treatment_effect = treatment_effect)
}

  233/256 [=================================================================================>--------]  91%
  234/256 [=================================================================================>--------]  91%
  235/256 [==================================================================================>-------]  92%
  236/256 [==================================================================================>-------]  92%
  237/256 [==================================================================================>-------]  93%
  238/256 [===================================================================================>------]  93%
  239/256 [===================================================================================>------]  93%
  240/256 [===================================================================================>------]  94%
  241/256 [====================================================================================>-----]  94%
  242/256 [====================================================================================>-----]  95%
  243/256 [====================================================================================>-----]  95%
  244/256 [=====================================================================================>----]  95%
  245/256 [=====================================================================================>----]  96%
  246/256 [=====================================================================================>----]  96%
  247/256 [======================================================================================>---]  96%
  248/256 [======================================================================================>---]  97%
  249/256 [=======================================================================================>--]  97%
  250/256 [=======================================================================================>--]  98%
  251/256 [=======================================================================================>--]  98%
  252/256 [========================================================================================>-]  98%
  253/256 [========================================================================================>-]  99%
  254/256 [========================================================================================>-]  99%
  255/256 [=========================================================================================>] 100%
  256/256 [==========================================================================================] 100%
head(block_results_df)

library(ggplot2)

ggplot(block_results_df, aes(x = treatment_effect)) +
  geom_histogram(bins = 27, fill = "blue", color = "black", alpha = 0.7) +
  labs(title = "Histogram of 256 Test Statistics", x = "Difference of Means", y = "Frequency") +
  theme_minimal() +
  theme(plot.title = element_text(hjust = 0.5)) +
  geom_vline(xintercept = -0.1575,color='red') +
  annotate("text", x = -0.12, y = 30, label = "Observed Test Statistic",size=2.65) 



min(block_results_df$treatment_effect)
[1] -0.1575
block_p_value = 1/256

length(unique(block_results_df$treatment_effect))
[1] 135
Modes <- function(x) {
  ux <- unique(x)
  tab <- tabulate(match(x, ux))
  ux[tab == max(tab)]
}
Modes(block_results_df$treatment_effect)
[1] -0.075  0.065 -0.065  0.075
# Question 2

library(readr)
library(Matching)
library(dplyr)

gb <- read_csv("C:/Users/raphael khalid/Desktop/CS130 Causal Inference/greenbuildings.csv")
Rows: 7820 Columns: 16── Column specification ─────────────────────────────────────────────────────────────────────────────────────
Delimiter: ","
chr  (1): class
dbl (15): CS_PropertyID, rev_psf, Rent, leasing_rate, size, City_Market_Rent, stories, age, renovated, gr...
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
# Method 1: Encoding class to numeric
gb <- gb %>%
  mutate(class = case_when(
    class == "A" ~ 1,
    class == "B" ~ 2,
    class == "C" ~ 3))
gb

attach(gb)
Tr <- green_rating
X <- cbind(size, stories, age, class)
Y <- leasing_rate
detach(gb)

# Perform genetic matching
gen1 <- GenMatch(Tr = Tr, X = X, wait.generations=5, max.generations = 20)


Sun Nov 26 14:35:58 2023
Domains:
 0.000000e+00   <=  X1   <=    1.000000e+03 
 0.000000e+00   <=  X2   <=    1.000000e+03 
 0.000000e+00   <=  X3   <=    1.000000e+03 
 0.000000e+00   <=  X4   <=    1.000000e+03 

Data Type: Floating Point
Operators (code number, name, population) 
    (1) Cloning...........................  15
    (2) Uniform Mutation..................  12
    (3) Boundary Mutation.................  12
    (4) Non-Uniform Mutation..............  12
    (5) Polytope Crossover................  12
    (6) Simple Crossover..................  12
    (7) Whole Non-Uniform Mutation........  12
    (8) Heuristic Crossover...............  12
    (9) Local-Minimum Crossover...........  0

SOFT Maximum Number of Generations: 20
Maximum Nonchanging Generations: 5
Population size       : 100
Convergence Tolerance: 1.000000e-03

Not Using the BFGS Derivative Based Optimizer on the Best Individual Each Generation.
Not Checking Gradients before Stopping.
Using Out of Bounds Individuals.

Maximization Problem.
GENERATION: 0 (initializing the population)
Lexical Fit..... 8.042622e-02  1.919202e-01  2.660542e-01  3.173109e-01  3.464481e-01  5.588048e-01  6.792199e-01  1.000000e+00  
#unique......... 100, #Total UniqueCount: 100
var 1:
best............ 4.052061e+02
mean............ 4.606271e+02
variance........ 8.881056e+04
var 2:
best............ 3.533284e+02
mean............ 4.935909e+02
variance........ 8.184157e+04
var 3:
best............ 9.126206e+02
mean............ 5.273906e+02
variance........ 7.603680e+04
var 4:
best............ 2.245625e+02
mean............ 4.757956e+02
variance........ 9.977177e+04

GENERATION: 1
Lexical Fit..... 1.608458e-01  1.930106e-01  3.157635e-01  3.173109e-01  3.667090e-01  5.202268e-01  6.705182e-01  1.000000e+00  
#unique......... 71, #Total UniqueCount: 171
var 1:
best............ 3.352935e+02
mean............ 5.698992e+02
variance........ 5.264302e+04
var 2:
best............ 3.533284e+02
mean............ 3.954249e+02
variance........ 2.571046e+04
var 3:
best............ 9.126206e+02
mean............ 7.291094e+02
variance........ 3.145122e+04
var 4:
best............ 2.245625e+02
mean............ 4.590147e+02
variance........ 7.595013e+04

GENERATION: 2
Lexical Fit..... 1.608458e-01  1.930106e-01  3.157635e-01  3.173109e-01  3.667090e-01  5.202268e-01  6.705182e-01  1.000000e+00  
#unique......... 65, #Total UniqueCount: 236
var 1:
best............ 3.352935e+02
mean............ 4.088098e+02
variance........ 2.243200e+04
var 2:
best............ 3.533284e+02
mean............ 3.682769e+02
variance........ 6.589972e+03
var 3:
best............ 9.126206e+02
mean............ 8.494079e+02
variance........ 2.679277e+04
var 4:
best............ 2.245625e+02
mean............ 2.773730e+02
variance........ 3.101895e+04

GENERATION: 3
Lexical Fit..... 1.608458e-01  1.930106e-01  3.157635e-01  3.173109e-01  3.667090e-01  5.202268e-01  6.705182e-01  1.000000e+00  
#unique......... 53, #Total UniqueCount: 289
var 1:
best............ 3.352935e+02
mean............ 3.532617e+02
variance........ 5.891582e+03
var 2:
best............ 3.533284e+02
mean............ 3.672782e+02
variance........ 7.015408e+03
var 3:
best............ 9.126206e+02
mean............ 8.876973e+02
variance........ 6.864194e+03
var 4:
best............ 2.245625e+02
mean............ 2.389426e+02
variance........ 6.598408e+03

GENERATION: 4
Lexical Fit..... 1.608458e-01  1.930106e-01  3.157635e-01  3.173109e-01  3.667090e-01  5.202268e-01  6.705182e-01  1.000000e+00  
#unique......... 48, #Total UniqueCount: 337
var 1:
best............ 3.352935e+02
mean............ 3.620538e+02
variance........ 1.104401e+04
var 2:
best............ 3.533284e+02
mean............ 3.463538e+02
variance........ 2.828694e+03
var 3:
best............ 9.126206e+02
mean............ 8.955470e+02
variance........ 3.623274e+03
var 4:
best............ 2.245625e+02
mean............ 2.373075e+02
variance........ 1.697853e+03

GENERATION: 5
Lexical Fit..... 1.633750e-01  1.712549e-01  2.865335e-01  3.173109e-01  3.217826e-01  4.704898e-01  5.270278e-01  1.000000e+00  
#unique......... 43, #Total UniqueCount: 380
var 1:
best............ 3.327124e+02
mean............ 3.359501e+02
variance........ 9.148943e+03
var 2:
best............ 3.354284e+02
mean............ 3.631542e+02
variance........ 3.269580e+03
var 3:
best............ 9.209369e+02
mean............ 9.059576e+02
variance........ 3.170516e+03
var 4:
best............ 2.704413e+02
mean............ 2.390905e+02
variance........ 1.161777e+04

GENERATION: 6
Lexical Fit..... 1.652548e-01  1.776384e-01  3.082385e-01  3.173109e-01  3.199033e-01  4.962837e-01  5.249102e-01  1.000000e+00  
#unique......... 68, #Total UniqueCount: 448
var 1:
best............ 3.330652e+02
mean............ 3.473089e+02
variance........ 6.517667e+03
var 2:
best............ 3.378746e+02
mean............ 3.498031e+02
variance........ 5.068334e+03
var 3:
best............ 9.198004e+02
mean............ 8.975045e+02
variance........ 1.046789e+04
var 4:
best............ 2.641715e+02
mean............ 2.651337e+02
variance........ 9.397933e+03

GENERATION: 7
Lexical Fit..... 1.712549e-01  1.725861e-01  2.972509e-01  3.173109e-01  3.199033e-01  4.683888e-01  5.249102e-01  1.000000e+00  
#unique......... 63, #Total UniqueCount: 511
var 1:
best............ 3.328894e+02
mean............ 3.403083e+02
variance........ 3.553280e+03
var 2:
best............ 3.366555e+02
mean............ 3.416056e+02
variance........ 3.700417e+03
var 3:
best............ 9.202717e+02
mean............ 9.071357e+02
variance........ 2.666225e+03
var 4:
best............ 2.672961e+02
mean............ 2.600746e+02
variance........ 6.479322e+03

GENERATION: 8
Lexical Fit..... 1.712549e-01  1.725861e-01  2.972509e-01  3.173109e-01  3.199033e-01  4.683888e-01  5.249102e-01  1.000000e+00  
#unique......... 69, #Total UniqueCount: 580
var 1:
best............ 3.328894e+02
mean............ 3.435979e+02
variance........ 2.214998e+03
var 2:
best............ 3.366555e+02
mean............ 3.368251e+02
variance........ 1.782525e+03
var 3:
best............ 9.202717e+02
mean............ 9.044187e+02
variance........ 9.000972e+03
var 4:
best............ 2.672961e+02
mean............ 2.844040e+02
variance........ 7.224846e+03

GENERATION: 9
Lexical Fit..... 1.712549e-01  1.725861e-01  2.972509e-01  3.173109e-01  3.199033e-01  4.683888e-01  5.249102e-01  1.000000e+00  
#unique......... 66, #Total UniqueCount: 646
var 1:
best............ 3.328894e+02
mean............ 3.355783e+02
variance........ 9.195697e+03
var 2:
best............ 3.366555e+02
mean............ 3.416592e+02
variance........ 4.252466e+03
var 3:
best............ 9.202717e+02
mean............ 9.060154e+02
variance........ 7.361790e+03
var 4:
best............ 2.672961e+02
mean............ 2.742951e+02
variance........ 4.223172e+03

GENERATION: 10
Lexical Fit..... 1.712549e-01  1.725861e-01  2.972509e-01  3.173109e-01  3.199033e-01  4.683888e-01  5.249102e-01  1.000000e+00  
#unique......... 63, #Total UniqueCount: 709
var 1:
best............ 3.328894e+02
mean............ 3.369063e+02
variance........ 3.675374e+03
var 2:
best............ 3.366555e+02
mean............ 3.476796e+02
variance........ 3.889934e+03
var 3:
best............ 9.202717e+02
mean............ 9.022044e+02
variance........ 1.166949e+04
var 4:
best............ 2.672961e+02
mean............ 2.701802e+02
variance........ 7.555463e+02

GENERATION: 11
Lexical Fit..... 1.712549e-01  1.725861e-01  2.972509e-01  3.173109e-01  3.199033e-01  4.683888e-01  5.249102e-01  1.000000e+00  
#unique......... 64, #Total UniqueCount: 773
var 1:
best............ 3.328894e+02
mean............ 3.283296e+02
variance........ 1.560590e+03
var 2:
best............ 3.366555e+02
mean............ 3.456409e+02
variance........ 3.603916e+03
var 3:
best............ 9.202717e+02
mean............ 8.998141e+02
variance........ 8.126906e+03
var 4:
best............ 2.672961e+02
mean............ 2.821737e+02
variance........ 8.242839e+03

GENERATION: 12
Lexical Fit..... 1.712549e-01  1.725861e-01  2.972509e-01  3.173109e-01  3.199033e-01  4.683888e-01  5.249102e-01  1.000000e+00  
#unique......... 69, #Total UniqueCount: 842
var 1:
best............ 3.328894e+02
mean............ 3.414497e+02
variance........ 3.055453e+03
var 2:
best............ 3.366555e+02
mean............ 3.464776e+02
variance........ 4.539931e+03
var 3:
best............ 9.202717e+02
mean............ 9.091441e+02
variance........ 4.291132e+03
var 4:
best............ 2.672961e+02
mean............ 2.699546e+02
variance........ 1.272190e+03

GENERATION: 13
Lexical Fit..... 1.712549e-01  1.725861e-01  2.972509e-01  3.173109e-01  3.199033e-01  4.683888e-01  5.249102e-01  1.000000e+00  
#unique......... 67, #Total UniqueCount: 909
var 1:
best............ 3.328894e+02
mean............ 3.335695e+02
variance........ 1.716758e+03
var 2:
best............ 3.366555e+02
mean............ 3.338593e+02
variance........ 8.498696e+02
var 3:
best............ 9.202717e+02
mean............ 9.043458e+02
variance........ 6.103111e+03
var 4:
best............ 2.672961e+02
mean............ 2.816272e+02
variance........ 1.057014e+04

'wait.generations' limit reached.
No significant improvement in 5 generations.

Solution Lexical Fitness Value:
1.712549e-01  1.725861e-01  2.972509e-01  3.173109e-01  3.199033e-01  4.683888e-01  5.249102e-01  1.000000e+00  

Parameters at the Solution:

 X[ 1] :    3.328894e+02
 X[ 2] :    3.366555e+02
 X[ 3] :    9.202717e+02
 X[ 4] :    2.672961e+02

Solution Found Generation 7
Number of Generations Run 13

Sun Nov 26 14:38:29 2023
Total run time : 0 hours 2 minutes and 31 seconds
mgen1 <- Match(Tr=Tr, X=X, Weight.matrix=gen1)
MatchBalance(Tr~size + stories + age + class, data=gb, match.out=mgen1, nboots=1000)  

***** (V1) size *****
                       Before Matching       After Matching
mean treatment........     326101            326101 
mean control..........     226158            324538 
std mean diff.........     34.366           0.53729 

mean raw eQQ diff.....     106293             11449 
med  raw eQQ diff.....     111749            5994.5 
max  raw eQQ diff.....    2059803            148788 

mean eCDF diff........    0.16972         0.0084028 
med  eCDF diff........    0.20193         0.0058594 
max  eCDF diff........    0.27229          0.034505 

var ratio (Tr/Co).....    0.95638            1.0036 
T-test p-value........ < 2.22e-16           0.17259 
KS Bootstrap p-value.. < 2.22e-16             0.318 
KS Naive p-value...... < 2.22e-16            0.3199 
KS Statistic..........    0.27229          0.034505 


***** (V2) stories *****
                       Before Matching       After Matching
mean treatment........     15.343            15.343 
mean control..........     13.424            15.278 
std mean diff.........     14.413           0.48655 

mean raw eQQ diff.....      1.947           0.52604 
med  raw eQQ diff.....          2                 0 
max  raw eQQ diff.....         34                14 

mean eCDF diff........   0.027321         0.0073317 
med  eCDF diff........    0.01588         0.0052083 
max  eCDF diff........    0.08163          0.029297 

var ratio (Tr/Co).....      1.191            1.0618 
T-test p-value........ 0.00032045           0.29725 
KS Bootstrap p-value.. < 2.22e-16             0.399 
KS Naive p-value...... 0.00051562           0.52491 
KS Statistic..........    0.08163          0.029297 


***** (V3) age *****
                       Before Matching       After Matching
mean treatment........     23.898            23.898 
mean control..........     49.308                24 
std mean diff.........    -162.69          -0.65065 

mean raw eQQ diff.....     25.454           0.59635 
med  raw eQQ diff.....         14                 0 
max  raw eQQ diff.....         63                 8 

mean eCDF diff........    0.17859         0.0066438 
med  eCDF diff........    0.15303         0.0045573 
max  eCDF diff........    0.44503          0.030599 

var ratio (Tr/Co).....    0.23341           0.99419 
T-test p-value........ < 2.22e-16           0.17125 
KS Bootstrap p-value.. < 2.22e-16             0.298 
KS Naive p-value...... < 2.22e-16           0.46839 
KS Statistic..........    0.44503          0.030599 


***** (V4) class *****
                       Before Matching       After Matching
mean treatment........      1.215             1.215 
mean control..........     1.7929            1.2135 
std mean diff.........    -132.68           0.33815 

mean raw eQQ diff.....    0.57879         0.0019531 
med  raw eQQ diff.....          1                 0 
max  raw eQQ diff.....          1                 1 

mean eCDF diff........    0.19262        0.00065104 
med  eCDF diff........    0.14373                 0 
max  eCDF diff........    0.43413         0.0019531 

var ratio (Tr/Co).....    0.40157            1.0204 
T-test p-value........ < 2.22e-16           0.31731 
KS Bootstrap p-value.. < 2.22e-16             0.972 
KS Naive p-value...... < 2.22e-16                 1 
KS Statistic..........    0.43413         0.0019531 


Before Matching Minimum p.value: < 2.22e-16 
Variable Name(s): size stories age class  Number(s): 1 2 3 4 

After Matching Minimum p.value: 0.17125 
Variable Name(s): age  Number(s): 3 
mgenout_main <- Match(Y=Y, Tr=Tr, X=X, Weight.matrix=gen1)
summary(mgenout_main)

Estimate...  2.7948 
AI SE......  0.88627 
T-stat.....  3.1535 
p.val......  0.0016133 

Original number of observations..............  7820 
Original number of treated obs...............  679 
Matched number of observations...............  679 
Matched number of observations  (unweighted).  1536 
# Method 2: Using class_a and class_b
Tr <- gb$green_rating
X <- cbind(gb$size, gb$stories, gb$age, gb$class_a, gb$class_b)
Y <- gb$leasing_rate
# Perform genetic matching
gen2 <- GenMatch(Tr = Tr, X = X, wait.generations=5, max.generations = 20)


Sun Nov 26 14:39:12 2023
Domains:
 0.000000e+00   <=  X1   <=    1.000000e+03 
 0.000000e+00   <=  X2   <=    1.000000e+03 
 0.000000e+00   <=  X3   <=    1.000000e+03 
 0.000000e+00   <=  X4   <=    1.000000e+03 
 0.000000e+00   <=  X5   <=    1.000000e+03 

Data Type: Floating Point
Operators (code number, name, population) 
    (1) Cloning...........................  15
    (2) Uniform Mutation..................  12
    (3) Boundary Mutation.................  12
    (4) Non-Uniform Mutation..............  12
    (5) Polytope Crossover................  12
    (6) Simple Crossover..................  12
    (7) Whole Non-Uniform Mutation........  12
    (8) Heuristic Crossover...............  12
    (9) Local-Minimum Crossover...........  0

SOFT Maximum Number of Generations: 20
Maximum Nonchanging Generations: 5
Population size       : 100
Convergence Tolerance: 1.000000e-03

Not Using the BFGS Derivative Based Optimizer on the Best Individual Each Generation.
Not Checking Gradients before Stopping.
Using Out of Bounds Individuals.

Maximization Problem.
GENERATION: 0 (initializing the population)
Lexical Fit..... 6.617208e-02  1.563606e-01  2.011898e-01  3.214068e-01  5.558594e-01  6.764728e-01  1.000000e+00  1.000000e+00  1.000000e+00  1.000000e+00  
#unique......... 100, #Total UniqueCount: 100
var 1:
best............ 4.167930e+02
mean............ 4.933432e+02
variance........ 8.318411e+04
var 2:
best............ 3.676719e+02
mean............ 5.180173e+02
variance........ 9.272120e+04
var 3:
best............ 8.611146e+02
mean............ 4.744151e+02
variance........ 7.132562e+04
var 4:
best............ 6.808970e+02
mean............ 4.769405e+02
variance........ 6.448677e+04
var 5:
best............ 3.906511e+02
mean............ 5.052198e+02
variance........ 7.623197e+04

GENERATION: 1
Lexical Fit..... 1.251692e-01  1.828491e-01  2.318151e-01  3.157635e-01  5.494971e-01  6.705182e-01  1.000000e+00  1.000000e+00  1.000000e+00  1.000000e+00  
#unique......... 70, #Total UniqueCount: 170
var 1:
best............ 4.205235e+02
mean............ 5.253988e+02
variance........ 3.700991e+04
var 2:
best............ 3.776825e+02
mean............ 4.583559e+02
variance........ 4.918821e+04
var 3:
best............ 8.539813e+02
mean............ 6.867676e+02
variance........ 3.798343e+04
var 4:
best............ 6.784862e+02
mean............ 5.683985e+02
variance........ 3.839920e+04
var 5:
best............ 3.904160e+02
mean............ 4.389003e+02
variance........ 3.162648e+04

GENERATION: 2
Lexical Fit..... 1.286983e-01  1.979268e-01  2.318151e-01  3.153868e-01  5.490705e-01  6.701179e-01  1.000000e+00  1.000000e+00  1.000000e+00  1.000000e+00  
#unique......... 72, #Total UniqueCount: 242
var 1:
best............ 4.223455e+02
mean............ 4.604950e+02
variance........ 1.255964e+04
var 2:
best............ 3.825718e+02
mean............ 4.356688e+02
variance........ 2.991022e+04
var 3:
best............ 8.548856e+02
mean............ 7.763030e+02
variance........ 2.118401e+04
var 4:
best............ 6.478468e+02
mean............ 6.877564e+02
variance........ 2.391806e+04
var 5:
best............ 2.968313e+02
mean............ 4.197790e+02
variance........ 1.077737e+04

GENERATION: 3
Lexical Fit..... 2.130178e-01  2.228403e-01  2.257325e-01  3.173109e-01  3.173109e-01  3.387277e-01  5.503494e-01  6.713175e-01  1.000000e+00  1.000000e+00  
#unique......... 67, #Total UniqueCount: 309
var 1:
best............ 4.205235e+02
mean............ 4.281401e+02
variance........ 2.966934e+03
var 2:
best............ 3.776825e+02
mean............ 3.756880e+02
variance........ 1.463988e+03
var 3:
best............ 8.539813e+02
mean............ 8.288127e+02
variance........ 6.103752e+03
var 4:
best............ 6.784862e+02
mean............ 6.512296e+02
variance........ 1.137064e+04
var 5:
best............ 4.061264e+01
mean............ 3.426891e+02
variance........ 1.273395e+04

GENERATION: 4
Lexical Fit..... 2.257325e-01  2.289469e-01  2.313313e-01  3.173109e-01  3.173109e-01  3.387277e-01  5.503494e-01  6.713175e-01  1.000000e+00  1.000000e+00  
#unique......... 64, #Total UniqueCount: 373
var 1:
best............ 4.205235e+02
mean............ 4.405893e+02
variance........ 5.927552e+03
var 2:
best............ 3.820828e+02
mean............ 3.790845e+02
variance........ 8.131019e+02
var 3:
best............ 8.547952e+02
mean............ 8.507574e+02
variance........ 1.335416e+03
var 4:
best............ 6.509108e+02
mean............ 6.372770e+02
variance........ 1.305401e+04
var 5:
best............ 1.017628e+02
mean............ 1.771690e+02
variance........ 1.750305e+04

GENERATION: 5
Lexical Fit..... 2.257325e-01  2.289469e-01  2.313313e-01  3.173109e-01  3.173109e-01  3.387277e-01  5.503494e-01  6.713175e-01  1.000000e+00  1.000000e+00  
#unique......... 72, #Total UniqueCount: 445
var 1:
best............ 4.205235e+02
mean............ 4.279408e+02
variance........ 6.154285e+03
var 2:
best............ 3.820828e+02
mean............ 3.939903e+02
variance........ 4.323083e+03
var 3:
best............ 8.547952e+02
mean............ 8.290622e+02
variance........ 8.434302e+03
var 4:
best............ 6.509108e+02
mean............ 6.519526e+02
variance........ 1.628751e+03
var 5:
best............ 1.017628e+02
mean............ 1.126918e+02
variance........ 4.108949e+03

GENERATION: 6
Lexical Fit..... 2.257325e-01  2.289469e-01  2.313313e-01  3.173109e-01  3.173109e-01  3.387277e-01  5.503494e-01  6.713175e-01  1.000000e+00  1.000000e+00  
#unique......... 70, #Total UniqueCount: 515
var 1:
best............ 4.205235e+02
mean............ 4.279851e+02
variance........ 1.812899e+03
var 2:
best............ 3.820828e+02
mean............ 3.791438e+02
variance........ 6.609076e+02
var 3:
best............ 8.547952e+02
mean............ 8.368578e+02
variance........ 5.325107e+03
var 4:
best............ 6.509108e+02
mean............ 6.509051e+02
variance........ 2.752408e+03
var 5:
best............ 1.017628e+02
mean............ 1.278893e+02
variance........ 1.095819e+04

GENERATION: 7
Lexical Fit..... 2.257325e-01  2.289469e-01  2.313313e-01  3.173109e-01  3.173109e-01  3.387277e-01  5.503494e-01  6.713175e-01  1.000000e+00  1.000000e+00  
#unique......... 70, #Total UniqueCount: 585
var 1:
best............ 4.205235e+02
mean............ 4.216556e+02
variance........ 3.734218e+03
var 2:
best............ 3.820828e+02
mean............ 3.888572e+02
variance........ 3.728513e+03
var 3:
best............ 8.547952e+02
mean............ 8.351424e+02
variance........ 8.190935e+03
var 4:
best............ 6.509108e+02
mean............ 6.455101e+02
variance........ 4.516313e+03
var 5:
best............ 1.017628e+02
mean............ 1.185964e+02
variance........ 8.644706e+03

GENERATION: 8
Lexical Fit..... 2.257325e-01  2.289469e-01  2.313313e-01  3.173109e-01  3.173109e-01  3.387277e-01  5.503494e-01  6.713175e-01  1.000000e+00  1.000000e+00  
#unique......... 62, #Total UniqueCount: 647
var 1:
best............ 4.205235e+02
mean............ 4.288746e+02
variance........ 1.923616e+03
var 2:
best............ 3.820828e+02
mean............ 3.834202e+02
variance........ 1.033148e+03
var 3:
best............ 8.547952e+02
mean............ 8.420717e+02
variance........ 8.731370e+03
var 4:
best............ 6.509108e+02
mean............ 6.411260e+02
variance........ 3.079931e+03
var 5:
best............ 1.017628e+02
mean............ 1.187620e+02
variance........ 8.025674e+03

GENERATION: 9
Lexical Fit..... 2.257325e-01  2.289469e-01  2.313313e-01  3.173109e-01  3.173109e-01  3.387277e-01  5.503494e-01  6.713175e-01  1.000000e+00  1.000000e+00  
#unique......... 66, #Total UniqueCount: 713
var 1:
best............ 4.205235e+02
mean............ 4.196103e+02
variance........ 4.063391e+02
var 2:
best............ 3.820828e+02
mean............ 3.914577e+02
variance........ 5.332421e+03
var 3:
best............ 8.547952e+02
mean............ 8.543921e+02
variance........ 4.312481e+02
var 4:
best............ 6.509108e+02
mean............ 6.457589e+02
variance........ 5.866755e+03
var 5:
best............ 1.017628e+02
mean............ 1.028492e+02
variance........ 7.500681e+01

GENERATION: 10
Lexical Fit..... 2.257325e-01  2.289469e-01  2.313313e-01  3.173109e-01  3.173109e-01  3.387277e-01  5.503494e-01  6.713175e-01  1.000000e+00  1.000000e+00  
#unique......... 63, #Total UniqueCount: 776
var 1:
best............ 4.205235e+02
mean............ 4.285830e+02
variance........ 1.786946e+03
var 2:
best............ 3.820828e+02
mean............ 3.939976e+02
variance........ 7.734801e+03
var 3:
best............ 8.547952e+02
mean............ 8.474500e+02
variance........ 3.494192e+03
var 4:
best............ 6.509108e+02
mean............ 6.384906e+02
variance........ 6.944949e+03
var 5:
best............ 1.017628e+02
mean............ 1.085219e+02
variance........ 2.643119e+03

'wait.generations' limit reached.
No significant improvement in 5 generations.

Solution Lexical Fitness Value:
2.257325e-01  2.289469e-01  2.313313e-01  3.173109e-01  3.173109e-01  3.387277e-01  5.503494e-01  6.713175e-01  1.000000e+00  1.000000e+00  

Parameters at the Solution:

 X[ 1] :    4.205235e+02
 X[ 2] :    3.820828e+02
 X[ 3] :    8.547952e+02
 X[ 4] :    6.509108e+02
 X[ 5] :    1.017628e+02

Solution Found Generation 4
Number of Generations Run 10

Sun Nov 26 14:41:45 2023
Total run time : 0 hours 2 minutes and 33 seconds
mgen2 <- Match(Tr=Tr, X=X, Weight.matrix=gen2)
MatchBalance(Tr~size + stories + age + class_a + class_b, data=gb, match.out=mgen2, nboots=1000)

***** (V1) size *****
                       Before Matching       After Matching
mean treatment........     326101            326101 
mean control..........     226158            324859 
std mean diff.........     34.366           0.42699 

mean raw eQQ diff.....     106293             10320 
med  raw eQQ diff.....     111749              5376 
max  raw eQQ diff.....    2059803            148788 

mean eCDF diff........    0.16972         0.0077568 
med  eCDF diff........    0.20193         0.0058939 
max  eCDF diff........    0.27229          0.034054 

var ratio (Tr/Co).....    0.95638            1.0045 
T-test p-value........ < 2.22e-16           0.22895 
KS Bootstrap p-value.. < 2.22e-16             0.302 
KS Naive p-value...... < 2.22e-16           0.33873 
KS Statistic..........    0.27229          0.034054 


***** (V2) stories *****
                       Before Matching       After Matching
mean treatment........     15.343            15.343 
mean control..........     13.424            15.267 
std mean diff.........     14.413           0.57502 

mean raw eQQ diff.....      1.947           0.52914 
med  raw eQQ diff.....          2                 0 
max  raw eQQ diff.....         34                14 

mean eCDF diff........   0.027321         0.0073749 
med  eCDF diff........    0.01588         0.0058939 
max  eCDF diff........    0.08163          0.026195 

var ratio (Tr/Co).....      1.191             1.066 
T-test p-value........ 0.00032045           0.23133 
KS Bootstrap p-value.. < 2.22e-16             0.516 
KS Naive p-value...... 0.00051562           0.67132 
KS Statistic..........    0.08163          0.026195 


***** (V3) age *****
                       Before Matching       After Matching
mean treatment........     23.898            23.898 
mean control..........     49.308            23.993 
std mean diff.........    -162.69           -0.6035 

mean raw eQQ diff.....     25.454           0.61297 
med  raw eQQ diff.....         14                 0 
max  raw eQQ diff.....         63                 8 

mean eCDF diff........    0.17859         0.0067593 
med  eCDF diff........    0.15303          0.005239 
max  eCDF diff........    0.44503          0.028815 

var ratio (Tr/Co).....    0.23341           0.99681 
T-test p-value........ < 2.22e-16           0.22573 
KS Bootstrap p-value.. < 2.22e-16             0.382 
KS Naive p-value...... < 2.22e-16           0.55035 
KS Statistic..........    0.44503          0.028815 


***** (V4) class_a *****
                       Before Matching       After Matching
mean treatment........    0.79529           0.79529 
mean control..........    0.36115           0.79529 
std mean diff.........     107.51                 0 

mean raw eQQ diff.....    0.43446                 0 
med  raw eQQ diff.....          0                 0 
max  raw eQQ diff.....          1                 0 

mean eCDF diff........    0.21707                 0 
med  eCDF diff........    0.21707                 0 
max  eCDF diff........    0.43413                 0 

var ratio (Tr/Co).....    0.70658                 1 
T-test p-value........ < 2.22e-16                 1 


***** (V5) class_b *****
                       Before Matching       After Matching
mean treatment........     0.1944            0.1944 
mean control..........    0.48481           0.19588 
std mean diff.........    -73.328          -0.37188 

mean raw eQQ diff.....    0.29013         0.0019646 
med  raw eQQ diff.....          0                 0 
max  raw eQQ diff.....          1                 1 

mean eCDF diff........     0.1452        0.00098232 
med  eCDF diff........     0.1452        0.00098232 
max  eCDF diff........     0.2904         0.0019646 

var ratio (Tr/Co).....    0.62786            0.9943 
T-test p-value........ < 2.22e-16           0.31731 


Before Matching Minimum p.value: < 2.22e-16 
Variable Name(s): size stories age class_a class_b  Number(s): 1 2 3 4 5 

After Matching Minimum p.value: 0.22573 
Variable Name(s): age  Number(s): 3 
# Visual Inspection of Data Distribution

library(ggplot2)
# Create a histogram of treatment effects
ggplot(gb, aes(x = size)) +
  geom_histogram(bins = 30, fill = "blue", color = "black", alpha = 0.7) +
  labs(title = "Histogram of Size", x = "Size", y = "Frequency") +
  theme_minimal() +
  theme(plot.title = element_text(hjust = 0.5))


ggplot(gb, aes(x = stories)) +
  geom_histogram(bins = 30, fill = "blue", color = "black", alpha = 0.7) +
  labs(title = "Histogram of Stories", x = "Stories", y = "Frequency") +
  theme_minimal() +
  theme(plot.title = element_text(hjust = 0.5))


ggplot(gb, aes(x = age)) +
  geom_histogram(bins = 30, fill = "blue", color = "black", alpha = 0.7) +
  labs(title = "Histogram of Age", x = "Age", y = "Frequency") +
  theme_minimal() +
  theme(plot.title = element_text(hjust = 0.5))


ggplot(gb, aes(x = class)) +
  geom_histogram(bins = 30, fill = "blue", color = "black", alpha = 0.7) +
  labs(title = "Histogram of Class", x = "Class", y = "Frequency") +
  theme_minimal() +
  theme(plot.title = element_text(hjust = 0.5))

sd(gb$size)
[1] 298127.2
# Genetic matching with Caliper

attach(gb)
Tr <- green_rating
X <- cbind(size, stories, age, class)
Y <- leasing_rate
detach(gb)
caliper <- c(300/sd(gb$size),
             3/sd(gb$stories),
             3/sd(gb$age),
             1/sd(gb$class))
# Perform genetic matching
gen3 <- GenMatch(Tr = Tr, X = X, wait.generations=5, max.generations = 20, caliper= caliper)


Sun Nov 26 14:42:13 2023
Domains:
 0.000000e+00   <=  X1   <=    1.000000e+03 
 0.000000e+00   <=  X2   <=    1.000000e+03 
 0.000000e+00   <=  X3   <=    1.000000e+03 
 0.000000e+00   <=  X4   <=    1.000000e+03 

Data Type: Floating Point
Operators (code number, name, population) 
    (1) Cloning...........................  15
    (2) Uniform Mutation..................  12
    (3) Boundary Mutation.................  12
    (4) Non-Uniform Mutation..............  12
    (5) Polytope Crossover................  12
    (6) Simple Crossover..................  12
    (7) Whole Non-Uniform Mutation........  12
    (8) Heuristic Crossover...............  12
    (9) Local-Minimum Crossover...........  0

SOFT Maximum Number of Generations: 20
Maximum Nonchanging Generations: 5
Population size       : 100
Convergence Tolerance: 1.000000e-03

Not Using the BFGS Derivative Based Optimizer on the Best Individual Each Generation.
Not Checking Gradients before Stopping.
Using Out of Bounds Individuals.

Maximization Problem.
GENERATION: 0 (initializing the population)
Lexical Fit..... 1.085711e-02  5.588192e-02  2.121869e-01  2.122577e-01  8.836725e-01  9.153209e-01  1.000000e+00  1.000000e+00  
#unique......... 100, #Total UniqueCount: 100
var 1:
best............ 1.000000e+00
mean............ 5.163680e+02
variance........ 8.325095e+04
var 2:
best............ 1.000000e+00
mean............ 5.614413e+02
variance........ 8.880453e+04
var 3:
best............ 1.000000e+00
mean............ 5.636047e+02
variance........ 6.714905e+04
var 4:
best............ 1.000000e+00
mean............ 4.938942e+02
variance........ 9.671595e+04

GENERATION: 1
Lexical Fit..... 1.085711e-02  5.588192e-02  2.121869e-01  2.122577e-01  8.836725e-01  9.153209e-01  1.000000e+00  1.000000e+00  
#unique......... 68, #Total UniqueCount: 168
var 1:
best............ 1.000000e+00
mean............ 1.108718e+02
variance........ 4.365764e+04
var 2:
best............ 1.000000e+00
mean............ 4.177636e+02
variance........ 1.191460e+05
var 3:
best............ 1.000000e+00
mean............ 3.779018e+02
variance........ 8.873178e+04
var 4:
best............ 1.000000e+00
mean............ 2.473030e+02
variance........ 8.232235e+04

GENERATION: 2
Lexical Fit..... 1.085711e-02  5.588192e-02  2.121869e-01  2.122577e-01  8.836725e-01  9.153209e-01  1.000000e+00  1.000000e+00  
#unique......... 64, #Total UniqueCount: 232
var 1:
best............ 1.000000e+00
mean............ 3.759119e+01
variance........ 1.569265e+04
var 2:
best............ 1.000000e+00
mean............ 3.452268e+02
variance........ 1.467445e+05
var 3:
best............ 1.000000e+00
mean............ 2.546990e+02
variance........ 7.908208e+04
var 4:
best............ 1.000000e+00
mean............ 1.209958e+02
variance........ 2.949719e+04

GENERATION: 3
Lexical Fit..... 1.085711e-02  5.588192e-02  2.121869e-01  2.122577e-01  8.836725e-01  9.153209e-01  1.000000e+00  1.000000e+00  
#unique......... 59, #Total UniqueCount: 291
var 1:
best............ 1.000000e+00
mean............ 3.085583e+01
variance........ 1.043729e+04
var 2:
best............ 1.000000e+00
mean............ 4.340127e+02
variance........ 1.568525e+05
var 3:
best............ 1.000000e+00
mean............ 3.168519e+02
variance........ 6.753843e+04
var 4:
best............ 1.000000e+00
mean............ 1.304737e+02
variance........ 3.195516e+04

GENERATION: 4
Lexical Fit..... 1.085711e-02  5.588192e-02  2.121869e-01  2.122577e-01  8.836725e-01  9.153209e-01  1.000000e+00  1.000000e+00  
#unique......... 58, #Total UniqueCount: 349
var 1:
best............ 1.000000e+00
mean............ 2.325519e+01
variance........ 7.583676e+03
var 2:
best............ 1.000000e+00
mean............ 3.693504e+02
variance........ 1.531485e+05
var 3:
best............ 1.000000e+00
mean............ 2.826824e+02
variance........ 6.944398e+04
var 4:
best............ 1.000000e+00
mean............ 1.084883e+02
variance........ 1.926060e+04

GENERATION: 5
Lexical Fit..... 1.085711e-02  5.588192e-02  2.121869e-01  2.122577e-01  8.836725e-01  9.153209e-01  1.000000e+00  1.000000e+00  
#unique......... 60, #Total UniqueCount: 409
var 1:
best............ 1.000000e+00
mean............ 2.262238e+01
variance........ 5.021294e+03
var 2:
best............ 1.000000e+00
mean............ 4.082041e+02
variance........ 1.744149e+05
var 3:
best............ 1.000000e+00
mean............ 2.850748e+02
variance........ 7.121599e+04
var 4:
best............ 1.000000e+00
mean............ 1.063110e+02
variance........ 2.060405e+04

GENERATION: 6
Lexical Fit..... 1.085711e-02  5.588192e-02  2.121869e-01  2.122577e-01  8.836725e-01  9.153209e-01  1.000000e+00  1.000000e+00  
#unique......... 57, #Total UniqueCount: 466
var 1:
best............ 1.000000e+00
mean............ 1.822618e+01
variance........ 4.503182e+03
var 2:
best............ 1.000000e+00
mean............ 3.757066e+02
variance........ 1.523975e+05
var 3:
best............ 1.000000e+00
mean............ 2.999702e+02
variance........ 8.646708e+04
var 4:
best............ 1.000000e+00
mean............ 8.528497e+01
variance........ 1.511637e+04

'wait.generations' limit reached.
No significant improvement in 5 generations.

Solution Lexical Fitness Value:
1.085711e-02  5.588192e-02  2.121869e-01  2.122577e-01  8.836725e-01  9.153209e-01  1.000000e+00  1.000000e+00  

Parameters at the Solution:

 X[ 1] :    1.000000e+00
 X[ 2] :    1.000000e+00
 X[ 3] :    1.000000e+00
 X[ 4] :    1.000000e+00

Solution Found Generation 1
Number of Generations Run 6

Sun Nov 26 14:43:22 2023
Total run time : 0 hours 1 minutes and 9 seconds
mgen3 <- Match(Tr=Tr, X=X, Weight.matrix=gen3)
MatchBalance(Tr~size + stories + age + class, data=gb, match.out=mgen3, nboots=1000)

***** (V1) size *****
                       Before Matching       After Matching
mean treatment........     326101            326101 
mean control..........     226158            323438 
std mean diff.........     34.366           0.91569 

mean raw eQQ diff.....     106293              9063 
med  raw eQQ diff.....     111749              4337 
max  raw eQQ diff.....    2059803            148788 

mean eCDF diff........    0.16972          0.006727 
med  eCDF diff........    0.20193         0.0052562 
max  eCDF diff........    0.27229          0.036137 

var ratio (Tr/Co).....    0.95638            1.0233 
T-test p-value........ < 2.22e-16          0.013972 
KS Bootstrap p-value.. < 2.22e-16             0.246 
KS Naive p-value...... < 2.22e-16            0.2734 
KS Statistic..........    0.27229          0.036137 


***** (V2) stories *****
                       Before Matching       After Matching
mean treatment........     15.343            15.343 
mean control..........     13.424            15.299 
std mean diff.........     14.413           0.33174 

mean raw eQQ diff.....      1.947           0.48555 
med  raw eQQ diff.....          2                 0 
max  raw eQQ diff.....         34                14 

mean eCDF diff........   0.027321         0.0067017 
med  eCDF diff........    0.01588         0.0052562 
max  eCDF diff........    0.08163          0.025624 

var ratio (Tr/Co).....      1.191            1.0517 
T-test p-value........ 0.00032045           0.45696 
KS Bootstrap p-value.. < 2.22e-16             0.567 
KS Naive p-value...... 0.00051562           0.69976 
KS Statistic..........    0.08163          0.025624 


***** (V3) age *****
                       Before Matching       After Matching
mean treatment........     23.898            23.898 
mean control..........     49.308            24.074 
std mean diff.........    -162.69           -1.1274 

mean raw eQQ diff.....     25.454           0.70565 
med  raw eQQ diff.....         14                 0 
max  raw eQQ diff.....         63                 8 

mean eCDF diff........    0.17859         0.0076627 
med  eCDF diff........    0.15303         0.0052562 
max  eCDF diff........    0.44503          0.036137 

var ratio (Tr/Co).....    0.23341            1.0146 
T-test p-value........ < 2.22e-16          0.083604 
KS Bootstrap p-value.. < 2.22e-16             0.186 
KS Naive p-value...... < 2.22e-16            0.2734 
KS Statistic..........    0.44503          0.036137 


***** (V4) class *****
                       Before Matching       After Matching
mean treatment........      1.215             1.215 
mean control..........     1.7929             1.215 
std mean diff.........    -132.68                 0 

mean raw eQQ diff.....    0.57879                 0 
med  raw eQQ diff.....          1                 0 
max  raw eQQ diff.....          1                 0 

mean eCDF diff........    0.19262                 0 
med  eCDF diff........    0.14373                 0 
max  eCDF diff........    0.43413                 0 

var ratio (Tr/Co).....    0.40157                 1 
T-test p-value........ < 2.22e-16                 1 
KS Bootstrap p-value.. < 2.22e-16                 1 
KS Naive p-value...... < 2.22e-16                 1 
KS Statistic..........    0.43413                 0 


Before Matching Minimum p.value: < 2.22e-16 
Variable Name(s): size stories age class  Number(s): 1 2 3 4 

After Matching Minimum p.value: 0.013972 
Variable Name(s): size  Number(s): 1 
mgenout_caliper <- Match(Y=Y, Tr=Tr, X=X, Weight.matrix=gen3)
summary(mgenout_caliper)

Estimate...  2.6013 
AI SE......  0.86088 
T-stat.....  3.0216 
p.val......  0.0025141 

Original number of observations..............  7820 
Original number of treated obs...............  679 
Matched number of observations...............  679 
Matched number of observations  (unweighted).  1522 
# Quantile effect with Matched Data

mdt <- gb[mgen1$index.treated, ] 
mdc <- gb[mgen1$index.control, ] 

MQ10TE <- quantile(mdt$leasing_rate, probs = 0.1) - quantile(mdc$leasing_rate, probs = 0.1)
cat("10% Quantile Treatment Effect with Matching:", MQ10TE)
10% Quantile Treatment Effect with Matching: 8.15
quantile(gb$leasing_rate,probs=0.45)
  45% 
87.91 
# Plotting Quantile Treatment Effects

library(ggplot2)

quantile_levels <- seq(0.01, 0.99, by = 0.01)
quantile_treatment_effects <- sapply(quantile_levels, function(q) {
  quantile(mdt$leasing_rate, probs = q) - quantile(mdc$leasing_rate, probs = q)
})

plot_data <- data.frame(Quantile = quantile_levels, TreatmentEffect = quantile_treatment_effects)

ggplot(plot_data, aes(x = Quantile, y = TreatmentEffect)) +
  geom_point() +
  theme_minimal() +
  labs(title = "Quantile Treatment Effect of Green Rating on Leasing Rate",
       x = "Quantile",
       y = "Treatment Effect") +
  theme(plot.title = element_text(hjust = 0.5))

# Sensitivity Analysis using "class" as a benchmark covariate

library(quantreg)
library(sensemakr)

matched_data <- rbind(mdt, mdc)

# Linear model, removing post-treatment and irrelevant covariates.
lm <- lm(leasing_rate ~ . -CS_PropertyID - rev_psf - Rent - class_a - class_b, data = matched_data)
summary(lm)

Call:
lm(formula = leasing_rate ~ . - CS_PropertyID - rev_psf - Rent - 
    class_a - class_b, data = matched_data)

Residuals:
    Min      1Q  Median      3Q     Max 
-84.357  -3.897   3.040   8.063  18.592 

Coefficients:
                   Estimate Std. Error t value Pr(>|t|)    
(Intercept)       7.913e+01  1.386e+00  57.095  < 2e-16 ***
size              8.745e-07  1.955e-06   0.447 0.654707    
City_Market_Rent  2.098e-01  2.695e-02   7.784 9.54e-15 ***
stories           1.602e-01  4.357e-02   3.676 0.000241 ***
age               3.009e-02  1.665e-02   1.807 0.070903 .  
renovated         1.038e+00  6.586e-01   1.577 0.115005    
class            -1.408e+00  6.803e-01  -2.070 0.038499 *  
green_rating      2.292e+00  4.925e-01   4.654 3.40e-06 ***
LEED              8.338e-01  1.155e+00   0.722 0.470554    
amenities         1.188e-01  6.193e-01   0.192 0.847882    
Utility_Costs    -7.406e-01  2.951e-01  -2.510 0.012137 *  
---
Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

Residual standard error: 13.19 on 3061 degrees of freedom
Multiple R-squared:  0.06816,   Adjusted R-squared:  0.06512 
F-statistic: 22.39 on 10 and 3061 DF,  p-value: < 2.2e-16
# Sensitivity Analysis using "class" as the benchmark.
sensitivity <- sensemakr(model = lm, 
                  treatment = "green_rating",
                  benchmark_covariates = "class",
                  kd = c(1, seq(10, 140, by=1)), #change by=1 to get precise location where 9.11% is surpassed
                  q = 1,
                  alpha = 0.05, 
                  reduce = TRUE)

plot(sensitivity,label.text=FALSE)

summary(sensitivity)
Sensitivity Analysis to Unobserved Confounding

Model Formula: leasing_rate ~ (CS_PropertyID + rev_psf + Rent + size + City_Market_Rent + 
    stories + age + renovated + class + green_rating + LEED + 
    amenities + Utility_Costs + class_a + class_b) - CS_PropertyID - 
    rev_psf - Rent - class_a - class_b

Null hypothesis: q = 1 and reduce = TRUE 
-- This means we are considering biases that reduce the absolute value of the current estimate.
-- The null hypothesis deemed problematic is H0:tau = 0 

Unadjusted Estimates of 'green_rating': 
  Coef. estimate: 2.2919 
  Standard Error: 0.4925 
  t-value (H0:tau = 0): 4.6538 

Sensitivity Statistics:
  Partial R2 of treatment with outcome: 0.007 
  Robustness Value, q = 1: 0.0807 
  Robustness Value, q = 1, alpha = 0.05: 0.0475 

Verbal interpretation of sensitivity statistics:

-- Partial R2 of the treatment with the outcome: an extreme confounder (orthogonal to the covariates) that explains 100% of the residual variance of the outcome, would need to explain at least 0.7% of the residual variance of the treatment to fully account for the observed estimated effect.

-- Robustness Value, q = 1: unobserved confounders (orthogonal to the covariates) that explain more than 8.07% of the residual variance of both the treatment and the outcome are strong enough to bring the point estimate to 0 (a bias of 100% of the original estimate). Conversely, unobserved confounders that do not explain more than 8.07% of the residual variance of both the treatment and the outcome are not strong enough to bring the point estimate to 0.

-- Robustness Value, q = 1, alpha = 0.05: unobserved confounders (orthogonal to the covariates) that explain more than 4.75% of the residual variance of both the treatment and the outcome are strong enough to bring the estimate to a range where it is no longer 'statistically different' from 0 (a bias of 100% of the original estimate), at the significance level of alpha = 0.05. Conversely, unobserved confounders that do not explain more than 4.75% of the residual variance of both the treatment and the outcome are not strong enough to bring the estimate to a range where it is no longer 'statistically different' from 0, at the significance level of alpha = 0.05.

Bounds on omitted variable bias:

--The table below shows the maximum strength of unobserved confounders with association with the treatment and the outcome bounded by a multiple of the observed explanatory power of the chosen benchmark covariate(s).
ovb_minimal_reporting(sensitivity, format = "latex",verbose=TRUE)
\begin{table}[!h]
\centering
\begin{tabular}{lrrrrrr}
\multicolumn{7}{c}{Outcome: \textit{leasing_rate}} \\
\hline \hline 
Treatment: & Est. & S.E. & t-value & $R^2_{Y \sim D |{\bf X}}$ & $RV_{q = 1}$ & $RV_{q = 1, \alpha = 0.05}$  \\ 
\hline 
\textit{green_rating} & 2.292 & 0.492 & 4.654 & 0.7\% & 8.1\% & 4.8\% \\ 
\hline 
df = 3061 & & \multicolumn{5}{r}{ \small \textit{Bound (1x class)}: $R^2_{Y\sim Z| {\bf X}, D}$ = 0.1\%, $R^2_{D\sim Z| {\bf X} }$ = 0\%} \\
\end{tabular}
\end{table}
# Question 3

# Creating a synthetic control for Cantabria using base-code

library(Synth)
data(basque)

# dataprep: prepare data for synth
dataprep.out <-
  dataprep(
  foo = basque
  ,predictors= c("school.illit",
                 "school.prim",
                 "school.med",
                 "school.high",
                 "school.post.high"
                 ,"invest"
                 )
   ,predictors.op = c("mean")
   ,dependent     = c("gdpcap")
   ,unit.variable = c("regionno")
   ,time.variable = c("year")
   ,special.predictors = list(
    list("gdpcap",1960:1969,c("mean")),                            
    list("sec.agriculture",seq(1961,1969,2),c("mean")),
    list("sec.energy",seq(1961,1969,2),c("mean")),
    list("sec.industry",seq(1961,1969,2),c("mean")),
    list("sec.construction",seq(1961,1969,2),c("mean")),
    list("sec.services.venta",seq(1961,1969,2),c("mean")),
    list("sec.services.nonventa",seq(1961,1969,2),c("mean")),
    list("popdens",1969,c("mean")))
    ,treatment.identifier  = 7 #Cantabria
    ,controls.identifier   = c(2:6, 8:16, 18) #Removing 1 and 17, Espana and Basque
    ,time.predictors.prior = c(1964:1969)
    ,time.optimize.ssr     = c(1960:1969)
    ,unit.names.variable   = c("regionname")
    ,time.plot            = c(1955:1997) 
    )

# 1. combine highest and second highest 
# schooling category and eliminate highest category
dataprep.out$X1["school.high",] <- 
 dataprep.out$X1["school.high",] + 
 dataprep.out$X1["school.post.high",]
dataprep.out$X1                 <- 
 as.matrix(dataprep.out$X1[
  -which(rownames(dataprep.out$X1)=="school.post.high"),])
dataprep.out$X0["school.high",] <- 
 dataprep.out$X0["school.high",] + 
 dataprep.out$X0["school.post.high",]
dataprep.out$X0                 <- 
dataprep.out$X0[
 -which(rownames(dataprep.out$X0)=="school.post.high"),]

# 2. make total and compute shares for the schooling catgeories
lowest  <- which(rownames(dataprep.out$X0)=="school.illit")
highest <- which(rownames(dataprep.out$X0)=="school.high")

dataprep.out$X1[lowest:highest,] <- 
 (100 * dataprep.out$X1[lowest:highest,]) /
 sum(dataprep.out$X1[lowest:highest,])
dataprep.out$X0[lowest:highest,] <-  
 100 * scale(dataprep.out$X0[lowest:highest,],
             center=FALSE,
             scale=colSums(dataprep.out$X0[lowest:highest,])
                                                 )
    
# run synth
synth.out <- synth(data.prep.obj = dataprep.out)

X1, X0, Z1, Z0 all come directly from dataprep object.


**************** 
 searching for synthetic control unit  
 

**************** 
**************** 
**************** 

MSPE (LOSS V): 7.829298e-05 

solution.v:
 0.08472248 0.07074392 0.03613354 0.004143408 0.2590285 0.2649847 0.09142931 0.001807713 0.04189152 0.01718393 0.05446338 0.02163412 0.05183345 

solution.w:
 6.5348e-06 1.10812e-05 0.4175669 0.001261402 0.06308619 1.3719e-06 2.5961e-06 0.09360902 0.4244228 3.8971e-06 2.1343e-06 1.10545e-05 8.6368e-06 4.2692e-06 2.1614e-06 
# Get result tables
synth.tables <- synth.tab(
                          dataprep.res = dataprep.out,
                          synth.res = synth.out
                          ) 

# results tables:
print(synth.tables)
$tab.pred
                                        Treated Synthetic Sample Mean
school.illit                              2.819     8.959      11.527
school.prim                              86.890    82.856      80.513
school.med                                7.233     5.589       5.307
school.high                               3.058     2.596       2.654
invest                                   29.071    23.345      20.914
special.gdpcap.1960.1969                  3.871     3.871       3.562
special.sec.agriculture.1961.1969        15.922    14.974      21.715
special.sec.energy.1961.1969              2.894     9.698       5.472
special.sec.industry.1961.1969           36.530    26.371      21.484
special.sec.construction.1961.1969        5.976     7.565       7.362
special.sec.services.venta.1961.1969     33.484    35.751      36.731
special.sec.services.nonventa.1961.1969   5.198     5.646       7.239
special.popdens.1969                     87.390   119.678     100.215

$tab.v
                                        v.weights
school.illit                            0.085    
school.prim                             0.071    
school.med                              0.036    
school.high                             0.004    
invest                                  0.259    
special.gdpcap.1960.1969                0.265    
special.sec.agriculture.1961.1969       0.091    
special.sec.energy.1961.1969            0.002    
special.sec.industry.1961.1969          0.042    
special.sec.construction.1961.1969      0.017    
special.sec.services.venta.1961.1969    0.054    
special.sec.services.nonventa.1961.1969 0.022    
special.popdens.1969                    0.052    

$tab.w
   w.weights                   unit.names unit.numbers
2      0.000                    Andalucia            2
3      0.000                       Aragon            3
4      0.418       Principado De Asturias            4
5      0.001             Baleares (Islas)            5
6      0.063                     Canarias            6
8      0.000              Castilla Y Leon            8
9      0.000           Castilla-La Mancha            9
10     0.094                     Cataluna           10
11     0.424         Comunidad Valenciana           11
12     0.000                  Extremadura           12
13     0.000                      Galicia           13
14     0.000        Madrid (Comunidad De)           14
15     0.000           Murcia (Region de)           15
16     0.000 Navarra (Comunidad Foral De)           16
18     0.000                   Rioja (La)           18

$tab.loss
       Loss W       Loss V
[1,] 1.060832 7.829298e-05
# plot results:
# path
path.plot(synth.res = synth.out,
          dataprep.res = dataprep.out,
          Ylab = c("Real per-capita GDP (1986 USD, thousand)"),
          Xlab = c("Year"), 
          Ylim = c(0,13), 
          Legend = c("Cantabria Region","Synthetic Cantabria Region"),
          ) 


## gaps
gaps.plot(synth.res = synth.out,
          dataprep.res = dataprep.out, 
          Ylab = c("Gap in Real per-capita GDP (1986 USD, thousand)"),
          Xlab = c("Year"), 
          Ylim = c(-1.5,1.5), 
          )

NA
NA
# Re Running Synthetic Control with comparison

library(Synth)
data(basque)

# Full-time Optimized
dataprep.out <-
  dataprep(
  foo = basque
  ,predictors= c("school.illit",
                 "school.prim",
                 "school.med",
                 "school.high",
                 "school.post.high"
                 ,"invest"
                 )
   ,predictors.op = c("mean")
   ,dependent     = c("gdpcap")
   ,unit.variable = c("regionno")
   ,time.variable = c("year")
   ,special.predictors = list(
    list("gdpcap",1960:1969,c("mean")),                            
    list("sec.agriculture",seq(1961,1969,2),c("mean")),
    list("sec.energy",seq(1961,1969,2),c("mean")),
    list("sec.industry",seq(1961,1969,2),c("mean")),
    list("sec.construction",seq(1961,1969,2),c("mean")),
    list("sec.services.venta",seq(1961,1969,2),c("mean")),
    list("sec.services.nonventa",seq(1961,1969,2),c("mean")),
    list("popdens",1969,c("mean")))
    ,treatment.identifier  = 7 #Cantabria
    ,controls.identifier   = c(2:6, 8:16, 18) #Removing 1, 17
    ,time.predictors.prior = c(1955:1997) #Full-time optimization
    ,time.optimize.ssr     = c(1955:1997)
    ,unit.names.variable   = c("regionname")
    ,time.plot            = c(1955:1997) 
    )

 Missing data- treated unit; predictor: school.illit ; for period: 1955 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1956 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1957 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1958 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1959 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1960 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1961 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1962 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1963 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1970 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1971 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1972 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1973 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1974 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1975 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1976 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1977 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1978 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1979 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1980 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1981 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1982 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1983 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1984 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1985 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1986 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1987 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1988 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1989 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1990 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1991 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1992 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1993 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1994 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1995 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1996 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.illit ; for period: 1997 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1955 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1956 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1957 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1958 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1959 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1960 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1961 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1962 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1963 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1970 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1971 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1972 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1973 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1974 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1975 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1976 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1977 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1978 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1979 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1980 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1981 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1982 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1983 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1984 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1985 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1986 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1987 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1988 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1989 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1990 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1991 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1992 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1993 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1994 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1995 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1996 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.prim ; for period: 1997 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1955 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1956 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1957 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1958 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1959 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1960 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1961 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1962 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1963 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1970 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1971 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1972 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1973 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1974 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1975 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1976 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1977 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1978 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1979 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1980 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1981 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1982 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1983 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1984 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1985 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1986 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1987 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1988 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1989 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1990 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1991 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1992 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1993 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1994 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1995 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1996 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.med ; for period: 1997 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1955 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1956 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1957 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1958 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1959 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1960 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1961 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1962 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1963 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1970 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1971 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1972 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1973 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1974 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1975 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1976 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1977 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1978 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1979 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1980 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1981 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1982 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1983 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1984 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1985 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1986 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1987 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1988 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1989 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1990 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1991 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1992 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1993 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1994 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1995 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1996 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.high ; for period: 1997 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1955 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1956 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1957 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1958 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1959 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1960 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1961 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1962 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1963 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1970 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1971 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1972 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1973 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1974 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1975 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1976 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1977 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1978 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1979 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1980 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1981 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1982 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1983 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1984 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1985 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1986 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1987 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1988 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1989 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1990 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1991 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1992 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1993 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1994 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1995 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1996 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: school.post.high ; for period: 1997 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: invest ; for period: 1955 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: invest ; for period: 1956 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: invest ; for period: 1957 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: invest ; for period: 1958 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: invest ; for period: 1959 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: invest ; for period: 1960 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: invest ; for period: 1961 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: invest ; for period: 1962 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: invest ; for period: 1963 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: invest ; for period: 1996 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data- treated unit; predictor: invest ; for period: 1997 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.illit ; for period: 1955 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.illit ; for period: 1956 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.illit ; for period: 1957 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.illit ; for period: 1958 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.illit ; for period: 1959 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.illit ; for period: 1960 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.prim ; for period: 1955 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.prim ; for period: 1956 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.prim ; for period: 1957 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.prim ; for period: 1958 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.prim ; for period: 1959 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.prim ; for period: 1960 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.med ; for period: 1955 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.med ; for period: 1956 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.med ; for period: 1957 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.med ; for period: 1958 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.med ; for period: 1959 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.med ; for period: 1960 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.high ; for period: 1955 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.high ; for period: 1956 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.high ; for period: 1957 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.high ; for period: 1958 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.high ; for period: 1959 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.high ; for period: 1960 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.post.high ; for period: 1955 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.post.high ; for period: 1956 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.post.high ; for period: 1957 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.post.high ; for period: 1958 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.post.high ; for period: 1959 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: school.post.high ; for period: 1960 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: invest ; for period: 1955 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: invest ; for period: 1956 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: invest ; for period: 1957 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: invest ; for period: 1958 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: invest ; for period: 1959 
 We ignore (na.rm = TRUE) all missing values for predictors.op.

 Missing data - control unit: 2 ; predictor: invest ; for period: 1960 
 We ignore (na.rm = TRUE) all missing values for predictors.op.
# 1. combine highest and second highest 
# schooling category and eliminate highest category
dataprep.out$X1["school.high",] <- 
 dataprep.out$X1["school.high",] + 
 dataprep.out$X1["school.post.high",]
dataprep.out$X1                 <- 
 as.matrix(dataprep.out$X1[
  -which(rownames(dataprep.out$X1)=="school.post.high"),])
dataprep.out$X0["school.high",] <- 
 dataprep.out$X0["school.high",] + 
 dataprep.out$X0["school.post.high",]
dataprep.out$X0                 <- 
dataprep.out$X0[
 -which(rownames(dataprep.out$X0)=="school.post.high"),]

# 2. make total and compute shares for the schooling catgeories
lowest  <- which(rownames(dataprep.out$X0)=="school.illit")
highest <- which(rownames(dataprep.out$X0)=="school.high")

dataprep.out$X1[lowest:highest,] <- 
 (100 * dataprep.out$X1[lowest:highest,]) /
 sum(dataprep.out$X1[lowest:highest,])
dataprep.out$X0[lowest:highest,] <-  
 100 * scale(dataprep.out$X0[lowest:highest,],
             center=FALSE,
             scale=colSums(dataprep.out$X0[lowest:highest,])
                                                 )
# run synth
synth.out <- synth(data.prep.obj = dataprep.out)

X1, X0, Z1, Z0 all come directly from dataprep object.


**************** 
 searching for synthetic control unit  
 

**************** 
**************** 
**************** 

MSPE (LOSS V): 0.06148385 

solution.v:
 0.001583569 0.009615875 0.001709211 0.009467179 0.438055 0.1711221 0.1236533 0.01725706 0.0238148 0.06942482 0.02239812 0.08142432 0.03047454 

solution.w:
 6.727e-07 5.2411e-06 7.5286e-06 5.831e-07 6.315e-07 6.1372e-06 0.1080418 2.866e-07 0.8919265 3.9899e-06 5.308e-07 3.229e-07 1.1019e-06 3.6378e-06 1.0246e-06 
# Get result tables
synth.tables <- synth.tab(
                          dataprep.res = dataprep.out,
                          synth.res = synth.out
                          ) 

Cantabria_Synthetic_Path_1 <- dataprep.out$Y0plot %*% synth.out$solution.w

# Basque-period Optimized
dataprep.out <-
  dataprep(
  foo = basque
  ,predictors= c("school.illit",
                 "school.prim",
                 "school.med",
                 "school.high",
                 "school.post.high"
                 ,"invest"
                 )
   ,predictors.op = c("mean")
   ,dependent     = c("gdpcap")
   ,unit.variable = c("regionno")
   ,time.variable = c("year")
   ,special.predictors = list(
    list("gdpcap",1960:1969,c("mean")),                            
    list("sec.agriculture",seq(1961,1969,2),c("mean")),
    list("sec.energy",seq(1961,1969,2),c("mean")),
    list("sec.industry",seq(1961,1969,2),c("mean")),
    list("sec.construction",seq(1961,1969,2),c("mean")),
    list("sec.services.venta",seq(1961,1969,2),c("mean")),
    list("sec.services.nonventa",seq(1961,1969,2),c("mean")),
    list("popdens",1969,c("mean")))
    ,treatment.identifier  = 7 #Cantabria
    ,controls.identifier   = c(2:6, 8:16, 18) #Removing 1, 17
    ,time.predictors.prior = c(1964:1969) #Basque-time optimization
    ,time.optimize.ssr     = c(1960:1969)
    ,unit.names.variable   = c("regionname")
    ,time.plot            = c(1955:1997) 
    )

# 1. combine highest and second highest 
# schooling category and eliminate highest category
dataprep.out$X1["school.high",] <- 
 dataprep.out$X1["school.high",] + 
 dataprep.out$X1["school.post.high",]
dataprep.out$X1                 <- 
 as.matrix(dataprep.out$X1[
  -which(rownames(dataprep.out$X1)=="school.post.high"),])
dataprep.out$X0["school.high",] <- 
 dataprep.out$X0["school.high",] + 
 dataprep.out$X0["school.post.high",]
dataprep.out$X0                 <- 
dataprep.out$X0[
 -which(rownames(dataprep.out$X0)=="school.post.high"),]

# 2. make total and compute shares for the schooling catgeories
lowest  <- which(rownames(dataprep.out$X0)=="school.illit")
highest <- which(rownames(dataprep.out$X0)=="school.high")

dataprep.out$X1[lowest:highest,] <- 
 (100 * dataprep.out$X1[lowest:highest,]) /
 sum(dataprep.out$X1[lowest:highest,])
dataprep.out$X0[lowest:highest,] <-  
 100 * scale(dataprep.out$X0[lowest:highest,],
             center=FALSE,
             scale=colSums(dataprep.out$X0[lowest:highest,])
                                                 )
# run synth
synth.out <- synth(data.prep.obj = dataprep.out)

X1, X0, Z1, Z0 all come directly from dataprep object.


**************** 
 searching for synthetic control unit  
 

**************** 
**************** 
**************** 

MSPE (LOSS V): 7.829298e-05 

solution.v:
 0.08472248 0.07074392 0.03613354 0.004143408 0.2590285 0.2649847 0.09142931 0.001807713 0.04189152 0.01718393 0.05446338 0.02163412 0.05183345 

solution.w:
 6.5348e-06 1.10812e-05 0.4175669 0.001261402 0.06308619 1.3719e-06 2.5961e-06 0.09360902 0.4244228 3.8971e-06 2.1343e-06 1.10545e-05 8.6368e-06 4.2692e-06 2.1614e-06 
# Get result tables
synth.tables <- synth.tab(
                          dataprep.res = dataprep.out,
                          synth.res = synth.out
                          ) 

Cantabria_Synthetic_Path_2 <- dataprep.out$Y0plot %*% synth.out$solution.w

Cantabria_Real_Path <- basque[basque$regionname=='Cantabria',]$gdpcap

# Plotting
synthetic_df <- data.frame(X = rep(c(1955:1997),3),Y=c(rbind(Cantabria_Synthetic_Path_1,Cantabria_Synthetic_Path_2),Cantabria_Real_Path), method=c(rep("Full-period Optimized", 43),rep('Basque-period Optimized',43),rep('Cantabria Region', 43)))
library(ggplot2)
ggplot(data=synthetic_df, aes(x=X, y=Y, group=method)) +
  geom_line(aes(color=method))+
  theme(aspect.ratio=1/3)+
  xlab('Year')+
  ylab('Real per-capita GDP (1986 USD, thousand)')

synthetic_df

#Gap plot
gap_df <- data.frame(X = rep(c(1955:1997),2),
                     Y = rbind(Cantabria_Synthetic_Path_1 - Cantabria_Real_Path,
                             Cantabria_Synthetic_Path_2 - Cantabria_Real_Path),
                     method=c(rep("Full-period Optimized", 43),rep('Basque-period Optimized',43)))
#gap_df['Full-period Optimized'] <- Cantabria_Synthetic_Path_1 - Cantabria_Real_Path
#gap_df['Basque-period Optimized'] <- Cantabria_Synthetic_Path_2 - Cantabria_Real_Path

ggplot(data=gap_df, aes(x=X, y=w.weight, group=method)) +
  geom_line(aes(color=method))+
  theme(aspect.ratio=1/3)+
  xlab('Year')+
  ylab('Gaps in Real per-capita GDP (1986 USD, thousand)')+
  geom_hline(yintercept=0)+
  ylim(-1.5,1.5)


colnames(gap_df)
[1] "X"        "w.weight" "method"  
LS0tDQp0aXRsZTogIkNhdXNhbCBJbmZlcmVuY2UgQXNzaWdubWVudCINCm91dHB1dDogaHRtbF9ub3RlYm9vaw0KLS0tDQoNCmBgYHtyfQ0KIyBRdWVzdGlvbiAxDQoNCiMgSW1wb3J0aW5nIHRoZSBkYXRhDQpsaWJyYXJ5KHJlYWRyKQ0KZD1yZWFkX2NzdigiaHR0cHM6Ly9iaXQubHkvMlNLalVuMiIpDQoNCiMgR2V0IHRyZWF0bWVudCB2ZWN0b3IgYXMgYSBkdW1teQ0KdHJlYXRtZW50PW51bWVyaWMobGVuZ3RoKGQkdHJlYXQpKQ0KdHJlYXRtZW50W2QkdHJlYXQ9PSJwdWIucG9sIl09MQ0KDQoNCm1lYW4oZCR2b3RlX3BvcFt0cmVhdG1lbnQgPT0gMV0pIC0gbWVhbihkJHZvdGVfcG9wW3RyZWF0bWVudCA9PSAwXSkNClZpZXcoZCkNCmBgYA0KDQpgYGB7cn0NCg0KIyBDcmVhdGUgMTI4NzAgcGVybXV0YXRpb25zIG9mIGFzc2lnbm1lbnQNCnZlYyA8LSBjKHJlcCgwLDgpLHJlcCgxLDgpKQ0KdGJsX3YgPC0gdGFibGUodmVjKQ0KbGlicmFyeShSY3BwQWxnb3MpDQp0cmVhdF9wZXJtdXRhdGlvbnMgPC0gcGVybXV0ZUdlbmVyYWwobmFtZXModGJsX3YpLCAxNiwgZnJlcXMgPSB0YmxfdikNCmFzLm51bWVyaWModHJlYXRfcGVybXV0YXRpb25zWzEsXSkNCmRpbSh0cmVhdF9wZXJtdXRhdGlvbnMpDQoNCmBgYA0KDQpgYGB7cn0NCiMgRmlzaGVyIEV4YWN0IFRlc3QgKGEpDQoNCmxpYnJhcnkocHJvZ3Jlc3MpDQojIEZ1bmN0aW9uIHRvIGNhbGN1bGF0ZSB0cmVhdG1lbnQgZWZmZWN0DQpjYWxjdWxhdGVfdHJlYXRtZW50X2VmZmVjdCA8LSBmdW5jdGlvbihkZikgew0KICBtZWFuKGRmJHZvdGVfcG9wW2RmJHRyZWF0ID09IDFdKSAtIG1lYW4oZGYkdm90ZV9wb3BbZGYkdHJlYXQgPT0gMF0pDQp9DQoNCiMgSW5pdGlhbGl6ZSBhIGRhdGFmcmFtZQ0KcmVzdWx0c19kZiA8LSBkYXRhLmZyYW1lKHBlcm11dGF0aW9uID0gaW50ZWdlcigxMjg3MCksIHRyZWF0bWVudF9lZmZlY3QgPSBudW1lcmljKDEyODcwKSkNCg0KcGIgPC0gcHJvZ3Jlc3NfYmFyJG5ldyh0b3RhbCA9IGRpbSh0cmVhdF9wZXJtdXRhdGlvbnMpWzFdLCBjbGVhciA9IEZBTFNFLCBmb3JtYXQgPSAiICA6Y3VycmVudC86dG90YWwgWzpiYXJdIDpwZXJjZW50IikNCg0KIyBJdGVyYXRlIG92ZXIgZWFjaCBwZXJtdXRhdGlvbiBhbmQgY2FsY3VsYXRlIHRyZWF0bWVudCBlZmZlY3QNCmZvciAoaSBpbiAxOm5yb3codHJlYXRfcGVybXV0YXRpb25zKSkgew0KICANCiAgcGIkdGljaygpDQogIA0KICBkJHRyZWF0IDwtIGFzLm51bWVyaWModHJlYXRfcGVybXV0YXRpb25zW2ksXSkNCiAgdHJlYXRtZW50X2VmZmVjdCA8LSBjYWxjdWxhdGVfdHJlYXRtZW50X2VmZmVjdChkKQ0KDQogICMgU3RvcmUgcGVybXV0YXRpb24gYW5kIGNvcnJlc3BvbmRpbmcgdHJlYXRtZW50IGVmZmVjdA0KICByZXN1bHRzX2RmW2ksIF0gPC0gbGlzdChwZXJtdXRhdGlvbiA9IHBhc3RlKGFzLm51bWVyaWModHJlYXRfcGVybXV0YXRpb25zW2ksIF0pLCBjb2xsYXBzZSA9ICIiKSwgdHJlYXRtZW50X2VmZmVjdCA9IHRyZWF0bWVudF9lZmZlY3QpDQp9DQoNCiMgUHJpbnQgdGhlIGZpcnN0IGZldyByb3dzIG9mIHRoZSByZXN1bHRzIGRhdGFmcmFtZQ0KaGVhZChyZXN1bHRzX2RmKQ0KYGBgDQoNCmBgYHtyfQ0KIyBQbG90dGluZyBudWxsIHJhbmRvbWl6YXRpb24gZGlzdHJpYnV0aW9uDQoNCmxpYnJhcnkoZ2dwbG90MikNCg0KZ2dwbG90KHJlc3VsdHNfZGYsIGFlcyh4ID0gdHJlYXRtZW50X2VmZmVjdCkpICsNCiAgZ2VvbV9oaXN0b2dyYW0oYmlud2lkdGggPSAwLjAyMCwgZmlsbCA9ICJibHVlIiwgY29sb3IgPSAiYmxhY2siLCBhbHBoYSA9IDAuNykgKw0KICBsYWJzKHRpdGxlID0gIkhpc3RvZ3JhbSBvZiAxMiw4NzAgVGVzdCBTdGF0aXN0aWNzIiwgeCA9ICJEaWZmZXJlbmNlIG9mIE1lYW5zIiwgeSA9ICJGcmVxdWVuY3kiKSArDQogIHRoZW1lX21pbmltYWwoKSArDQogIHRoZW1lKHBsb3QudGl0bGUgPSBlbGVtZW50X3RleHQoaGp1c3QgPSAwLjUpKSArDQogIGdlb21fdmxpbmUoeGludGVyY2VwdCA9IC0wLjE1NzUsY29sb3I9J3JlZCcpICsNCiAgYW5ub3RhdGUoInRleHQiLCB4ID0gLTAuMjE1LCB5ID0gNzUwLCBsYWJlbCA9ICJPYnNlcnZlZCBUZXN0IFN0YXRpc3RpYyIsc2l6ZT0yLjY1KSANCmBgYA0KDQpgYGB7cn0NCiMgR2V0dGluZyBwLXZhbHVlIG9mIG9ic2VydmVkIHRlc3Qgc3RhdGlzdGljDQoNCmV4dHJlbWVfY291bnQgPC0gc3VtKHJlc3VsdHNfZGYkdHJlYXRtZW50X2VmZmVjdCA8PSAtMC4xNTc1KQ0KcF92YWx1ZSA9IGV4dHJlbWVfY291bnQvbGVuZ3RoKHJlc3VsdHNfZGYkdHJlYXRtZW50X2VmZmVjdCkNCnBfdmFsdWUNCg0KYGBgDQoNCmBgYHtyfQ0KIyBDYWxjdWxhdGluZyB0cmVhdG1lbnQgZWZmZWN0cyBieSBibG9jayB0byBnZXQgb2JzZXJ2ZWQgdGVzdCBzdGF0aXN0aWMNCg0KbGlicmFyeShyZWFkcikNCmQ9cmVhZF9jc3YoImh0dHBzOi8vYml0Lmx5LzJTS2pVbjIiKQ0KdHJlYXRtZW50PW51bWVyaWMobGVuZ3RoKGQkdHJlYXQpKQ0KdHJlYXRtZW50W2QkdHJlYXQ9PSJwdWIucG9sIl09MQ0KYnlfYmxvY2sgPC0gZCAlPiUgZ3JvdXBfYnkoYmxvY2spDQp0cmVhdG1lbnRfZWZmZWN0cyA8LSAoYnlfYmxvY2sgJT4lIHN1bW1hcmlzZSh0cmVhdG1lbnQgPSBkaWZmKHZvdGVfcG9wKSkpJHRyZWF0bWVudA0KdHJlYXRtZW50X2VmZmVjdHMNCm1lYW4odHJlYXRtZW50X2VmZmVjdHMpDQoNCiMgRXh0cmEgY3JlZGl0DQoNCmxpYnJhcnkoZ3Rvb2xzKQ0KbGlicmFyeShwcm9ncmVzcykNCmxpYnJhcnkocmVhZHIpDQpkPXJlYWRfY3N2KCJodHRwczovL2JpdC5seS8yU0tqVW4yIikNCnRyZWF0bWVudD1udW1lcmljKGxlbmd0aChkJHRyZWF0KSkNCnRyZWF0bWVudFtkJHRyZWF0PT0icHViLnBvbCJdPTENCg0KIyBGdW5jdGlvbiB0byByZXBsYWNlICdBJyB3aXRoICgwLDEpIGFuZCAnQicgd2l0aCAoMSwwKQ0KcmVwbGFjZV9wYWlycyA8LSBmdW5jdGlvbihwZXJtdXRhdGlvbikgew0KICBzYXBwbHkocGVybXV0YXRpb24sIGZ1bmN0aW9uKHgpIHsNCiAgICBpZiAoeCA9PSAnQScpIHsNCiAgICAgIHJldHVybihjKDAsIDEpKQ0KICAgIH0gZWxzZSB7DQogICAgICByZXR1cm4oYygxLCAwKSkNCiAgICB9DQogIH0pDQp9DQoNCiMgR2VuZXJhdGUgYWxsIHBlcm11dGF0aW9ucw0KcGVybV9zdHJpbmdzIDwtIHBlcm11dGF0aW9ucyhuID0gMiwgciA9IDgsIHYgPSBjKCdBJywgJ0InKSwgcmVwZWF0cy5hbGxvd2VkID0gVFJVRSkNCg0KIyBBcHBseSB0aGUgcmVwbGFjZW1lbnQgZnVuY3Rpb24gdG8gZWFjaCBwZXJtdXRhdGlvbiwgdHJhbnNwb3NlIHRvIGhhdmUgcm93cw0KIyBhcyB0aGUgdHJlYXRtZW50L2NvbnRyb2wgcGVybXV0YXRpb24NCmJsb2NrX3Blcm11dGF0aW9ucyA8LSB0KGFwcGx5KHBlcm1fc3RyaW5ncywgMSwgcmVwbGFjZV9wYWlycykpDQoNCmxpYnJhcnkocHJvZ3Jlc3MpDQpjYWxjdWxhdGVfdHJlYXRtZW50X2VmZmVjdCA8LSBmdW5jdGlvbihkZikgew0KICBtZWFuKGRmJHZvdGVfcG9wW2RmJHRyZWF0ID09IDFdKSAtIG1lYW4oZGYkdm90ZV9wb3BbZGYkdHJlYXQgPT0gMF0pfQ0KYmxvY2tfcmVzdWx0c19kZiA8LSBkYXRhLmZyYW1lKHBlcm11dGF0aW9uID0gaW50ZWdlcigyNTYpLCB0cmVhdG1lbnRfZWZmZWN0ID0gbnVtZXJpYygyNTYpKQ0KDQpwYiA8LSBwcm9ncmVzc19iYXIkbmV3KHRvdGFsID0gZGltKGJsb2NrX3Blcm11dGF0aW9ucylbMV0sIGNsZWFyID0gRkFMU0UsIGZvcm1hdCA9ICIgIDpjdXJyZW50Lzp0b3RhbCBbOmJhcl0gOnBlcmNlbnQiKQ0KDQpmb3IgKGkgaW4gMTpucm93KGJsb2NrX3Blcm11dGF0aW9ucykpIHsNCiAgDQogIHBiJHRpY2soKQ0KICANCiAgZCR0cmVhdCA8LSBibG9ja19wZXJtdXRhdGlvbnNbaSxdDQogIHRyZWF0bWVudF9lZmZlY3QgPC0gY2FsY3VsYXRlX3RyZWF0bWVudF9lZmZlY3QoZCkNCg0KICBibG9ja19yZXN1bHRzX2RmW2ksIF0gPC0gbGlzdChwZXJtdXRhdGlvbiA9IHBhc3RlKGJsb2NrX3Blcm11dGF0aW9uc1tpLF0sIGNvbGxhcHNlID0gIiIpLCB0cmVhdG1lbnRfZWZmZWN0ID0gdHJlYXRtZW50X2VmZmVjdCkNCn0NCg0KaGVhZChibG9ja19yZXN1bHRzX2RmKQ0KDQpsaWJyYXJ5KGdncGxvdDIpDQoNCmdncGxvdChibG9ja19yZXN1bHRzX2RmLCBhZXMoeCA9IHRyZWF0bWVudF9lZmZlY3QpKSArDQogIGdlb21faGlzdG9ncmFtKGJpbnMgPSAyNywgZmlsbCA9ICJibHVlIiwgY29sb3IgPSAiYmxhY2siLCBhbHBoYSA9IDAuNykgKw0KICBsYWJzKHRpdGxlID0gIkhpc3RvZ3JhbSBvZiAyNTYgVGVzdCBTdGF0aXN0aWNzIiwgeCA9ICJEaWZmZXJlbmNlIG9mIE1lYW5zIiwgeSA9ICJGcmVxdWVuY3kiKSArDQogIHRoZW1lX21pbmltYWwoKSArDQogIHRoZW1lKHBsb3QudGl0bGUgPSBlbGVtZW50X3RleHQoaGp1c3QgPSAwLjUpKSArDQogIGdlb21fdmxpbmUoeGludGVyY2VwdCA9IC0wLjE1NzUsY29sb3I9J3JlZCcpICsNCiAgYW5ub3RhdGUoInRleHQiLCB4ID0gLTAuMTIsIHkgPSAzMCwgbGFiZWwgPSAiT2JzZXJ2ZWQgVGVzdCBTdGF0aXN0aWMiLHNpemU9Mi42NSkgDQoNCg0KbWluKGJsb2NrX3Jlc3VsdHNfZGYkdHJlYXRtZW50X2VmZmVjdCkNCmJsb2NrX3BfdmFsdWUgPSAxLzI1Ng0KDQojIEdldHRpbmcgbW9kZXMgb2YgbnVsbCByYW5kb21pemF0aW9uIGRpc3RyaWJ1dGlvbg0KDQpsZW5ndGgodW5pcXVlKGJsb2NrX3Jlc3VsdHNfZGYkdHJlYXRtZW50X2VmZmVjdCkpDQpNb2RlcyA8LSBmdW5jdGlvbih4KSB7DQogIHV4IDwtIHVuaXF1ZSh4KQ0KICB0YWIgPC0gdGFidWxhdGUobWF0Y2goeCwgdXgpKQ0KICB1eFt0YWIgPT0gbWF4KHRhYildDQp9DQpNb2RlcyhibG9ja19yZXN1bHRzX2RmJHRyZWF0bWVudF9lZmZlY3QpDQoNCmBgYA0KDQpgYGB7cn0NCiMgUXVlc3Rpb24gMg0KDQpsaWJyYXJ5KHJlYWRyKQ0KbGlicmFyeShNYXRjaGluZykNCmxpYnJhcnkoZHBseXIpDQoNCmdiIDwtIHJlYWRfY3N2KCJDOi9Vc2Vycy9yYXBoYWVsIGtoYWxpZC9EZXNrdG9wL0NTMTMwIENhdXNhbCBJbmZlcmVuY2UvZ3JlZW5idWlsZGluZ3MuY3N2IikNCiMgTWV0aG9kIDE6IEVuY29kaW5nIGNsYXNzIHRvIG51bWVyaWMNCmdiIDwtIGdiICU+JQ0KICBtdXRhdGUoY2xhc3MgPSBjYXNlX3doZW4oDQogICAgY2xhc3MgPT0gIkEiIH4gMSwNCiAgICBjbGFzcyA9PSAiQiIgfiAyLA0KICAgIGNsYXNzID09ICJDIiB+IDMpKQ0KZ2INCmBgYA0KDQpgYGB7cn0NCg0KYXR0YWNoKGdiKQ0KVHIgPC0gZ3JlZW5fcmF0aW5nDQpYIDwtIGNiaW5kKHNpemUsIHN0b3JpZXMsIGFnZSwgY2xhc3MpDQpZIDwtIGxlYXNpbmdfcmF0ZQ0KZGV0YWNoKGdiKQ0KDQojIFBlcmZvcm0gZ2VuZXRpYyBtYXRjaGluZw0KZ2VuMSA8LSBHZW5NYXRjaChUciA9IFRyLCBYID0gWCwgd2FpdC5nZW5lcmF0aW9ucz01LCBtYXguZ2VuZXJhdGlvbnMgPSAyMCkNCm1nZW4xIDwtIE1hdGNoKFRyPVRyLCBYPVgsIFdlaWdodC5tYXRyaXg9Z2VuMSkNCk1hdGNoQmFsYW5jZShUcn5zaXplICsgc3RvcmllcyArIGFnZSArIGNsYXNzLCBkYXRhPWdiLCBtYXRjaC5vdXQ9bWdlbjEsIG5ib290cz0xMDAwKSAgDQoNCmBgYA0KDQpgYGB7cn0NCm1nZW5vdXRfbWFpbiA8LSBNYXRjaChZPVksIFRyPVRyLCBYPVgsIFdlaWdodC5tYXRyaXg9Z2VuMSkNCnN1bW1hcnkobWdlbm91dF9tYWluKQ0KYGBgDQoNCmBgYHtyfQ0KIyBNZXRob2QgMjogVXNpbmcgY2xhc3NfYSBhbmQgY2xhc3NfYg0KVHIgPC0gZ2IkZ3JlZW5fcmF0aW5nDQpYIDwtIGNiaW5kKGdiJHNpemUsIGdiJHN0b3JpZXMsIGdiJGFnZSwgZ2IkY2xhc3NfYSwgZ2IkY2xhc3NfYikNClkgPC0gZ2IkbGVhc2luZ19yYXRlDQojIFBlcmZvcm0gZ2VuZXRpYyBtYXRjaGluZw0KZ2VuMiA8LSBHZW5NYXRjaChUciA9IFRyLCBYID0gWCwgd2FpdC5nZW5lcmF0aW9ucz01LCBtYXguZ2VuZXJhdGlvbnMgPSAyMCkNCm1nZW4yIDwtIE1hdGNoKFRyPVRyLCBYPVgsIFdlaWdodC5tYXRyaXg9Z2VuMikNCk1hdGNoQmFsYW5jZShUcn5zaXplICsgc3RvcmllcyArIGFnZSArIGNsYXNzX2EgKyBjbGFzc19iLCBkYXRhPWdiLCBtYXRjaC5vdXQ9bWdlbjIsIG5ib290cz0xMDAwKQ0KYGBgDQoNCmBgYHtyfQ0KIyBWaXN1YWwgSW5zcGVjdGlvbiBvZiBEYXRhIERpc3RyaWJ1dGlvbg0KDQpsaWJyYXJ5KGdncGxvdDIpDQojIENyZWF0ZSBhIGhpc3RvZ3JhbSBvZiB0cmVhdG1lbnQgZWZmZWN0cw0KZ2dwbG90KGdiLCBhZXMoeCA9IHNpemUpKSArDQogIGdlb21faGlzdG9ncmFtKGJpbnMgPSAzMCwgZmlsbCA9ICJibHVlIiwgY29sb3IgPSAiYmxhY2siLCBhbHBoYSA9IDAuNykgKw0KICBsYWJzKHRpdGxlID0gIkhpc3RvZ3JhbSBvZiBTaXplIiwgeCA9ICJTaXplIiwgeSA9ICJGcmVxdWVuY3kiKSArDQogIHRoZW1lX21pbmltYWwoKSArDQogIHRoZW1lKHBsb3QudGl0bGUgPSBlbGVtZW50X3RleHQoaGp1c3QgPSAwLjUpKQ0KDQpnZ3Bsb3QoZ2IsIGFlcyh4ID0gc3RvcmllcykpICsNCiAgZ2VvbV9oaXN0b2dyYW0oYmlucyA9IDMwLCBmaWxsID0gImJsdWUiLCBjb2xvciA9ICJibGFjayIsIGFscGhhID0gMC43KSArDQogIGxhYnModGl0bGUgPSAiSGlzdG9ncmFtIG9mIFN0b3JpZXMiLCB4ID0gIlN0b3JpZXMiLCB5ID0gIkZyZXF1ZW5jeSIpICsNCiAgdGhlbWVfbWluaW1hbCgpICsNCiAgdGhlbWUocGxvdC50aXRsZSA9IGVsZW1lbnRfdGV4dChoanVzdCA9IDAuNSkpDQoNCmdncGxvdChnYiwgYWVzKHggPSBhZ2UpKSArDQogIGdlb21faGlzdG9ncmFtKGJpbnMgPSAzMCwgZmlsbCA9ICJibHVlIiwgY29sb3IgPSAiYmxhY2siLCBhbHBoYSA9IDAuNykgKw0KICBsYWJzKHRpdGxlID0gIkhpc3RvZ3JhbSBvZiBBZ2UiLCB4ID0gIkFnZSIsIHkgPSAiRnJlcXVlbmN5IikgKw0KICB0aGVtZV9taW5pbWFsKCkgKw0KICB0aGVtZShwbG90LnRpdGxlID0gZWxlbWVudF90ZXh0KGhqdXN0ID0gMC41KSkNCg0KZ2dwbG90KGdiLCBhZXMoeCA9IGNsYXNzKSkgKw0KICBnZW9tX2hpc3RvZ3JhbShiaW5zID0gMzAsIGZpbGwgPSAiYmx1ZSIsIGNvbG9yID0gImJsYWNrIiwgYWxwaGEgPSAwLjcpICsNCiAgbGFicyh0aXRsZSA9ICJIaXN0b2dyYW0gb2YgQ2xhc3MiLCB4ID0gIkNsYXNzIiwgeSA9ICJGcmVxdWVuY3kiKSArDQogIHRoZW1lX21pbmltYWwoKSArDQogIHRoZW1lKHBsb3QudGl0bGUgPSBlbGVtZW50X3RleHQoaGp1c3QgPSAwLjUpKQ0Kc2QoZ2Ikc2l6ZSkNCmBgYA0KDQpgYGB7cn0NCiMgR2VuZXRpYyBtYXRjaGluZyB3aXRoIENhbGlwZXINCg0KYXR0YWNoKGdiKQ0KVHIgPC0gZ3JlZW5fcmF0aW5nDQpYIDwtIGNiaW5kKHNpemUsIHN0b3JpZXMsIGFnZSwgY2xhc3MpDQpZIDwtIGxlYXNpbmdfcmF0ZQ0KZGV0YWNoKGdiKQ0KY2FsaXBlciA8LSBjKDMwMC9zZChnYiRzaXplKSwNCiAgICAgICAgICAgICAzL3NkKGdiJHN0b3JpZXMpLA0KICAgICAgICAgICAgIDMvc2QoZ2IkYWdlKSwNCiAgICAgICAgICAgICAxL3NkKGdiJGNsYXNzKSkNCiMgUGVyZm9ybSBnZW5ldGljIG1hdGNoaW5nDQpnZW4zIDwtIEdlbk1hdGNoKFRyID0gVHIsIFggPSBYLCB3YWl0LmdlbmVyYXRpb25zPTUsIG1heC5nZW5lcmF0aW9ucyA9IDIwLCBjYWxpcGVyPSBjYWxpcGVyKQ0KbWdlbjMgPC0gTWF0Y2goVHI9VHIsIFg9WCwgV2VpZ2h0Lm1hdHJpeD1nZW4zKQ0KTWF0Y2hCYWxhbmNlKFRyfnNpemUgKyBzdG9yaWVzICsgYWdlICsgY2xhc3MsIGRhdGE9Z2IsIG1hdGNoLm91dD1tZ2VuMywgbmJvb3RzPTEwMDApDQpgYGANCg0KYGBge3J9DQptZ2Vub3V0X2NhbGlwZXIgPC0gTWF0Y2goWT1ZLCBUcj1UciwgWD1YLCBXZWlnaHQubWF0cml4PWdlbjMpDQpzdW1tYXJ5KG1nZW5vdXRfY2FsaXBlcikNCmBgYA0KDQpgYGB7cn0NCiMgUXVhbnRpbGUgZWZmZWN0IHdpdGggTWF0Y2hlZCBEYXRhDQoNCm1kdCA8LSBnYlttZ2VuMSRpbmRleC50cmVhdGVkLCBdIA0KbWRjIDwtIGdiW21nZW4xJGluZGV4LmNvbnRyb2wsIF0gDQoNCk1RMTBURSA8LSBxdWFudGlsZShtZHQkbGVhc2luZ19yYXRlLCBwcm9icyA9IDAuMSkgLSBxdWFudGlsZShtZGMkbGVhc2luZ19yYXRlLCBwcm9icyA9IDAuMSkNCmNhdCgiMTAlIFF1YW50aWxlIFRyZWF0bWVudCBFZmZlY3Qgd2l0aCBNYXRjaGluZzoiLCBNUTEwVEUpDQoNCnF1YW50aWxlKGdiJGxlYXNpbmdfcmF0ZSxwcm9icz0wLjQ1KQ0KYGBgDQoNCmBgYHtyfQ0KIyBQbG90dGluZyBRdWFudGlsZSBUcmVhdG1lbnQgRWZmZWN0cw0KDQpsaWJyYXJ5KGdncGxvdDIpDQoNCnF1YW50aWxlX2xldmVscyA8LSBzZXEoMC4wMSwgMC45OSwgYnkgPSAwLjAxKQ0KcXVhbnRpbGVfdHJlYXRtZW50X2VmZmVjdHMgPC0gc2FwcGx5KHF1YW50aWxlX2xldmVscywgZnVuY3Rpb24ocSkgew0KICBxdWFudGlsZShtZHQkbGVhc2luZ19yYXRlLCBwcm9icyA9IHEpIC0gcXVhbnRpbGUobWRjJGxlYXNpbmdfcmF0ZSwgcHJvYnMgPSBxKQ0KfSkNCg0KcGxvdF9kYXRhIDwtIGRhdGEuZnJhbWUoUXVhbnRpbGUgPSBxdWFudGlsZV9sZXZlbHMsIFRyZWF0bWVudEVmZmVjdCA9IHF1YW50aWxlX3RyZWF0bWVudF9lZmZlY3RzKQ0KDQpnZ3Bsb3QocGxvdF9kYXRhLCBhZXMoeCA9IFF1YW50aWxlLCB5ID0gVHJlYXRtZW50RWZmZWN0KSkgKw0KICBnZW9tX3BvaW50KCkgKw0KICB0aGVtZV9taW5pbWFsKCkgKw0KICBsYWJzKHRpdGxlID0gIlF1YW50aWxlIFRyZWF0bWVudCBFZmZlY3Qgb2YgR3JlZW4gUmF0aW5nIG9uIExlYXNpbmcgUmF0ZSIsDQogICAgICAgeCA9ICJRdWFudGlsZSIsDQogICAgICAgeSA9ICJUcmVhdG1lbnQgRWZmZWN0IikgKw0KICB0aGVtZShwbG90LnRpdGxlID0gZWxlbWVudF90ZXh0KGhqdXN0ID0gMC41KSkNCg0KYGBgDQoNCmBgYHtyfQ0KIyBTZW5zaXRpdml0eSBBbmFseXNpcyB1c2luZyAiY2xhc3MiIGFzIGEgYmVuY2htYXJrIGNvdmFyaWF0ZQ0KDQpsaWJyYXJ5KHF1YW50cmVnKQ0KbGlicmFyeShzZW5zZW1ha3IpDQoNCm1hdGNoZWRfZGF0YSA8LSByYmluZChtZHQsIG1kYykNCg0KIyBMaW5lYXIgbW9kZWwsIHJlbW92aW5nIHBvc3QtdHJlYXRtZW50IGFuZCBpcnJlbGV2YW50IGNvdmFyaWF0ZXMuDQpsbSA8LSBsbShsZWFzaW5nX3JhdGUgfiAuIC1DU19Qcm9wZXJ0eUlEIC0gcmV2X3BzZiAtIFJlbnQgLSBjbGFzc19hIC0gY2xhc3NfYiwgZGF0YSA9IG1hdGNoZWRfZGF0YSkNCnN1bW1hcnkobG0pDQoNCiMgU2Vuc2l0aXZpdHkgQW5hbHlzaXMgdXNpbmcgImNsYXNzIiBhcyB0aGUgYmVuY2htYXJrLg0Kc2Vuc2l0aXZpdHkgPC0gc2Vuc2VtYWtyKG1vZGVsID0gbG0sIA0KICAgICAgICAgICAgICAgICAgdHJlYXRtZW50ID0gImdyZWVuX3JhdGluZyIsDQogICAgICAgICAgICAgICAgICBiZW5jaG1hcmtfY292YXJpYXRlcyA9ICJjbGFzcyIsDQogICAgICAgICAgICAgICAgICBrZCA9IGMoMSwgc2VxKDEwLCAxNDAsIGJ5PTEpKSwgI2NoYW5nZSBieT0xIHRvIGdldCBwcmVjaXNlIGxvY2F0aW9uIHdoZXJlIDkuMTElIGlzIHN1cnBhc3NlZA0KICAgICAgICAgICAgICAgICAgcSA9IDEsDQogICAgICAgICAgICAgICAgICBhbHBoYSA9IDAuMDUsIA0KICAgICAgICAgICAgICAgICAgcmVkdWNlID0gVFJVRSkNCg0KcGxvdChzZW5zaXRpdml0eSxsYWJlbC50ZXh0PUZBTFNFKQ0Kc3VtbWFyeShzZW5zaXRpdml0eSkNCm92Yl9taW5pbWFsX3JlcG9ydGluZyhzZW5zaXRpdml0eSwgZm9ybWF0ID0gImxhdGV4Iix2ZXJib3NlPVRSVUUpDQpgYGANCg0KYGBge3J9DQojIFF1ZXN0aW9uIDMNCg0KIyBDcmVhdGluZyBhIHN5bnRoZXRpYyBjb250cm9sIGZvciBDYW50YWJyaWEgdXNpbmcgYmFzZS1jb2RlDQoNCmxpYnJhcnkoU3ludGgpDQpkYXRhKGJhc3F1ZSkNCg0KIyBkYXRhcHJlcDogcHJlcGFyZSBkYXRhIGZvciBzeW50aA0KZGF0YXByZXAub3V0IDwtDQogIGRhdGFwcmVwKA0KICBmb28gPSBiYXNxdWUNCiAgLHByZWRpY3RvcnM9IGMoInNjaG9vbC5pbGxpdCIsDQogICAgICAgICAgICAgICAgICJzY2hvb2wucHJpbSIsDQogICAgICAgICAgICAgICAgICJzY2hvb2wubWVkIiwNCiAgICAgICAgICAgICAgICAgInNjaG9vbC5oaWdoIiwNCiAgICAgICAgICAgICAgICAgInNjaG9vbC5wb3N0LmhpZ2giDQogICAgICAgICAgICAgICAgICwiaW52ZXN0Ig0KICAgICAgICAgICAgICAgICApDQogICAscHJlZGljdG9ycy5vcCA9IGMoIm1lYW4iKQ0KICAgLGRlcGVuZGVudCAgICAgPSBjKCJnZHBjYXAiKQ0KICAgLHVuaXQudmFyaWFibGUgPSBjKCJyZWdpb25ubyIpDQogICAsdGltZS52YXJpYWJsZSA9IGMoInllYXIiKQ0KICAgLHNwZWNpYWwucHJlZGljdG9ycyA9IGxpc3QoDQogICAgbGlzdCgiZ2RwY2FwIiwxOTYwOjE5NjksYygibWVhbiIpKSwgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgbGlzdCgic2VjLmFncmljdWx0dXJlIixzZXEoMTk2MSwxOTY5LDIpLGMoIm1lYW4iKSksDQogICAgbGlzdCgic2VjLmVuZXJneSIsc2VxKDE5NjEsMTk2OSwyKSxjKCJtZWFuIikpLA0KICAgIGxpc3QoInNlYy5pbmR1c3RyeSIsc2VxKDE5NjEsMTk2OSwyKSxjKCJtZWFuIikpLA0KICAgIGxpc3QoInNlYy5jb25zdHJ1Y3Rpb24iLHNlcSgxOTYxLDE5NjksMiksYygibWVhbiIpKSwNCiAgICBsaXN0KCJzZWMuc2VydmljZXMudmVudGEiLHNlcSgxOTYxLDE5NjksMiksYygibWVhbiIpKSwNCiAgICBsaXN0KCJzZWMuc2VydmljZXMubm9udmVudGEiLHNlcSgxOTYxLDE5NjksMiksYygibWVhbiIpKSwNCiAgICBsaXN0KCJwb3BkZW5zIiwxOTY5LGMoIm1lYW4iKSkpDQogICAgLHRyZWF0bWVudC5pZGVudGlmaWVyICA9IDcgI0NhbnRhYnJpYQ0KICAgICxjb250cm9scy5pZGVudGlmaWVyICAgPSBjKDI6NiwgODoxNiwgMTgpICNSZW1vdmluZyAxIGFuZCAxNywgRXNwYW5hIGFuZCBCYXNxdWUNCiAgICAsdGltZS5wcmVkaWN0b3JzLnByaW9yID0gYygxOTY0OjE5NjkpDQogICAgLHRpbWUub3B0aW1pemUuc3NyICAgICA9IGMoMTk2MDoxOTY5KQ0KICAgICx1bml0Lm5hbWVzLnZhcmlhYmxlICAgPSBjKCJyZWdpb25uYW1lIikNCiAgICAsdGltZS5wbG90ICAgICAgICAgICAgPSBjKDE5NTU6MTk5NykgDQogICAgKQ0KDQojIDEuIGNvbWJpbmUgaGlnaGVzdCBhbmQgc2Vjb25kIGhpZ2hlc3QgDQojIHNjaG9vbGluZyBjYXRlZ29yeSBhbmQgZWxpbWluYXRlIGhpZ2hlc3QgY2F0ZWdvcnkNCmRhdGFwcmVwLm91dCRYMVsic2Nob29sLmhpZ2giLF0gPC0gDQogZGF0YXByZXAub3V0JFgxWyJzY2hvb2wuaGlnaCIsXSArIA0KIGRhdGFwcmVwLm91dCRYMVsic2Nob29sLnBvc3QuaGlnaCIsXQ0KZGF0YXByZXAub3V0JFgxICAgICAgICAgICAgICAgICA8LSANCiBhcy5tYXRyaXgoZGF0YXByZXAub3V0JFgxWw0KICAtd2hpY2gocm93bmFtZXMoZGF0YXByZXAub3V0JFgxKT09InNjaG9vbC5wb3N0LmhpZ2giKSxdKQ0KZGF0YXByZXAub3V0JFgwWyJzY2hvb2wuaGlnaCIsXSA8LSANCiBkYXRhcHJlcC5vdXQkWDBbInNjaG9vbC5oaWdoIixdICsgDQogZGF0YXByZXAub3V0JFgwWyJzY2hvb2wucG9zdC5oaWdoIixdDQpkYXRhcHJlcC5vdXQkWDAgICAgICAgICAgICAgICAgIDwtIA0KZGF0YXByZXAub3V0JFgwWw0KIC13aGljaChyb3duYW1lcyhkYXRhcHJlcC5vdXQkWDApPT0ic2Nob29sLnBvc3QuaGlnaCIpLF0NCg0KIyAyLiBtYWtlIHRvdGFsIGFuZCBjb21wdXRlIHNoYXJlcyBmb3IgdGhlIHNjaG9vbGluZyBjYXRnZW9yaWVzDQpsb3dlc3QgIDwtIHdoaWNoKHJvd25hbWVzKGRhdGFwcmVwLm91dCRYMCk9PSJzY2hvb2wuaWxsaXQiKQ0KaGlnaGVzdCA8LSB3aGljaChyb3duYW1lcyhkYXRhcHJlcC5vdXQkWDApPT0ic2Nob29sLmhpZ2giKQ0KDQpkYXRhcHJlcC5vdXQkWDFbbG93ZXN0OmhpZ2hlc3QsXSA8LSANCiAoMTAwICogZGF0YXByZXAub3V0JFgxW2xvd2VzdDpoaWdoZXN0LF0pIC8NCiBzdW0oZGF0YXByZXAub3V0JFgxW2xvd2VzdDpoaWdoZXN0LF0pDQpkYXRhcHJlcC5vdXQkWDBbbG93ZXN0OmhpZ2hlc3QsXSA8LSAgDQogMTAwICogc2NhbGUoZGF0YXByZXAub3V0JFgwW2xvd2VzdDpoaWdoZXN0LF0sDQogICAgICAgICAgICAgY2VudGVyPUZBTFNFLA0KICAgICAgICAgICAgIHNjYWxlPWNvbFN1bXMoZGF0YXByZXAub3V0JFgwW2xvd2VzdDpoaWdoZXN0LF0pDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKQ0KICAgIA0KIyBydW4gc3ludGgNCnN5bnRoLm91dCA8LSBzeW50aChkYXRhLnByZXAub2JqID0gZGF0YXByZXAub3V0KQ0KDQojIEdldCByZXN1bHQgdGFibGVzDQpzeW50aC50YWJsZXMgPC0gc3ludGgudGFiKA0KICAgICAgICAgICAgICAgICAgICAgICAgICBkYXRhcHJlcC5yZXMgPSBkYXRhcHJlcC5vdXQsDQogICAgICAgICAgICAgICAgICAgICAgICAgIHN5bnRoLnJlcyA9IHN5bnRoLm91dA0KICAgICAgICAgICAgICAgICAgICAgICAgICApIA0KDQojIHJlc3VsdHMgdGFibGVzOg0KcHJpbnQoc3ludGgudGFibGVzKQ0KDQojIHBsb3QgcmVzdWx0czoNCiMgcGF0aA0KcGF0aC5wbG90KHN5bnRoLnJlcyA9IHN5bnRoLm91dCwNCiAgICAgICAgICBkYXRhcHJlcC5yZXMgPSBkYXRhcHJlcC5vdXQsDQogICAgICAgICAgWWxhYiA9IGMoIlJlYWwgcGVyLWNhcGl0YSBHRFAgKDE5ODYgVVNELCB0aG91c2FuZCkiKSwNCiAgICAgICAgICBYbGFiID0gYygiWWVhciIpLCANCiAgICAgICAgICBZbGltID0gYygwLDEzKSwgDQogICAgICAgICAgTGVnZW5kID0gYygiQ2FudGFicmlhIFJlZ2lvbiIsIlN5bnRoZXRpYyBDYW50YWJyaWEgUmVnaW9uIiksDQogICAgICAgICAgKSANCg0KIyMgZ2Fwcw0KZ2Fwcy5wbG90KHN5bnRoLnJlcyA9IHN5bnRoLm91dCwNCiAgICAgICAgICBkYXRhcHJlcC5yZXMgPSBkYXRhcHJlcC5vdXQsIA0KICAgICAgICAgIFlsYWIgPSBjKCJHYXAgaW4gUmVhbCBwZXItY2FwaXRhIEdEUCAoMTk4NiBVU0QsIHRob3VzYW5kKSIpLA0KICAgICAgICAgIFhsYWIgPSBjKCJZZWFyIiksIA0KICAgICAgICAgIFlsaW0gPSBjKC0xLjUsMS41KSwgDQogICAgICAgICAgKQ0KDQoNCmBgYA0KDQpgYGB7cn0NCiMgUmUgUnVubmluZyBTeW50aGV0aWMgQ29udHJvbCB3aXRoIGNvbXBhcmlzb24NCg0KbGlicmFyeShTeW50aCkNCmRhdGEoYmFzcXVlKQ0KDQojIEZ1bGwtdGltZSBPcHRpbWl6ZWQNCmRhdGFwcmVwLm91dCA8LQ0KICBkYXRhcHJlcCgNCiAgZm9vID0gYmFzcXVlDQogICxwcmVkaWN0b3JzPSBjKCJzY2hvb2wuaWxsaXQiLA0KICAgICAgICAgICAgICAgICAic2Nob29sLnByaW0iLA0KICAgICAgICAgICAgICAgICAic2Nob29sLm1lZCIsDQogICAgICAgICAgICAgICAgICJzY2hvb2wuaGlnaCIsDQogICAgICAgICAgICAgICAgICJzY2hvb2wucG9zdC5oaWdoIg0KICAgICAgICAgICAgICAgICAsImludmVzdCINCiAgICAgICAgICAgICAgICAgKQ0KICAgLHByZWRpY3RvcnMub3AgPSBjKCJtZWFuIikNCiAgICxkZXBlbmRlbnQgICAgID0gYygiZ2RwY2FwIikNCiAgICx1bml0LnZhcmlhYmxlID0gYygicmVnaW9ubm8iKQ0KICAgLHRpbWUudmFyaWFibGUgPSBjKCJ5ZWFyIikNCiAgICxzcGVjaWFsLnByZWRpY3RvcnMgPSBsaXN0KA0KICAgIGxpc3QoImdkcGNhcCIsMTk2MDoxOTY5LGMoIm1lYW4iKSksICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgIGxpc3QoInNlYy5hZ3JpY3VsdHVyZSIsc2VxKDE5NjEsMTk2OSwyKSxjKCJtZWFuIikpLA0KICAgIGxpc3QoInNlYy5lbmVyZ3kiLHNlcSgxOTYxLDE5NjksMiksYygibWVhbiIpKSwNCiAgICBsaXN0KCJzZWMuaW5kdXN0cnkiLHNlcSgxOTYxLDE5NjksMiksYygibWVhbiIpKSwNCiAgICBsaXN0KCJzZWMuY29uc3RydWN0aW9uIixzZXEoMTk2MSwxOTY5LDIpLGMoIm1lYW4iKSksDQogICAgbGlzdCgic2VjLnNlcnZpY2VzLnZlbnRhIixzZXEoMTk2MSwxOTY5LDIpLGMoIm1lYW4iKSksDQogICAgbGlzdCgic2VjLnNlcnZpY2VzLm5vbnZlbnRhIixzZXEoMTk2MSwxOTY5LDIpLGMoIm1lYW4iKSksDQogICAgbGlzdCgicG9wZGVucyIsMTk2OSxjKCJtZWFuIikpKQ0KICAgICx0cmVhdG1lbnQuaWRlbnRpZmllciAgPSA3ICNDYW50YWJyaWENCiAgICAsY29udHJvbHMuaWRlbnRpZmllciAgID0gYygyOjYsIDg6MTYsIDE4KSAjUmVtb3ZpbmcgMSwgMTcNCiAgICAsdGltZS5wcmVkaWN0b3JzLnByaW9yID0gYygxOTU1OjE5OTcpICNGdWxsLXRpbWUgb3B0aW1pemF0aW9uDQogICAgLHRpbWUub3B0aW1pemUuc3NyICAgICA9IGMoMTk1NToxOTk3KQ0KICAgICx1bml0Lm5hbWVzLnZhcmlhYmxlICAgPSBjKCJyZWdpb25uYW1lIikNCiAgICAsdGltZS5wbG90ICAgICAgICAgICAgPSBjKDE5NTU6MTk5NykgDQogICAgKQ0KDQojIDEuIGNvbWJpbmUgaGlnaGVzdCBhbmQgc2Vjb25kIGhpZ2hlc3QgDQojIHNjaG9vbGluZyBjYXRlZ29yeSBhbmQgZWxpbWluYXRlIGhpZ2hlc3QgY2F0ZWdvcnkNCmRhdGFwcmVwLm91dCRYMVsic2Nob29sLmhpZ2giLF0gPC0gDQogZGF0YXByZXAub3V0JFgxWyJzY2hvb2wuaGlnaCIsXSArIA0KIGRhdGFwcmVwLm91dCRYMVsic2Nob29sLnBvc3QuaGlnaCIsXQ0KZGF0YXByZXAub3V0JFgxICAgICAgICAgICAgICAgICA8LSANCiBhcy5tYXRyaXgoZGF0YXByZXAub3V0JFgxWw0KICAtd2hpY2gocm93bmFtZXMoZGF0YXByZXAub3V0JFgxKT09InNjaG9vbC5wb3N0LmhpZ2giKSxdKQ0KZGF0YXByZXAub3V0JFgwWyJzY2hvb2wuaGlnaCIsXSA8LSANCiBkYXRhcHJlcC5vdXQkWDBbInNjaG9vbC5oaWdoIixdICsgDQogZGF0YXByZXAub3V0JFgwWyJzY2hvb2wucG9zdC5oaWdoIixdDQpkYXRhcHJlcC5vdXQkWDAgICAgICAgICAgICAgICAgIDwtIA0KZGF0YXByZXAub3V0JFgwWw0KIC13aGljaChyb3duYW1lcyhkYXRhcHJlcC5vdXQkWDApPT0ic2Nob29sLnBvc3QuaGlnaCIpLF0NCg0KIyAyLiBtYWtlIHRvdGFsIGFuZCBjb21wdXRlIHNoYXJlcyBmb3IgdGhlIHNjaG9vbGluZyBjYXRnZW9yaWVzDQpsb3dlc3QgIDwtIHdoaWNoKHJvd25hbWVzKGRhdGFwcmVwLm91dCRYMCk9PSJzY2hvb2wuaWxsaXQiKQ0KaGlnaGVzdCA8LSB3aGljaChyb3duYW1lcyhkYXRhcHJlcC5vdXQkWDApPT0ic2Nob29sLmhpZ2giKQ0KDQpkYXRhcHJlcC5vdXQkWDFbbG93ZXN0OmhpZ2hlc3QsXSA8LSANCiAoMTAwICogZGF0YXByZXAub3V0JFgxW2xvd2VzdDpoaWdoZXN0LF0pIC8NCiBzdW0oZGF0YXByZXAub3V0JFgxW2xvd2VzdDpoaWdoZXN0LF0pDQpkYXRhcHJlcC5vdXQkWDBbbG93ZXN0OmhpZ2hlc3QsXSA8LSAgDQogMTAwICogc2NhbGUoZGF0YXByZXAub3V0JFgwW2xvd2VzdDpoaWdoZXN0LF0sDQogICAgICAgICAgICAgY2VudGVyPUZBTFNFLA0KICAgICAgICAgICAgIHNjYWxlPWNvbFN1bXMoZGF0YXByZXAub3V0JFgwW2xvd2VzdDpoaWdoZXN0LF0pDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKQ0KIyBydW4gc3ludGgNCnN5bnRoLm91dCA8LSBzeW50aChkYXRhLnByZXAub2JqID0gZGF0YXByZXAub3V0KQ0KDQojIEdldCByZXN1bHQgdGFibGVzDQpzeW50aC50YWJsZXMgPC0gc3ludGgudGFiKA0KICAgICAgICAgICAgICAgICAgICAgICAgICBkYXRhcHJlcC5yZXMgPSBkYXRhcHJlcC5vdXQsDQogICAgICAgICAgICAgICAgICAgICAgICAgIHN5bnRoLnJlcyA9IHN5bnRoLm91dA0KICAgICAgICAgICAgICAgICAgICAgICAgICApIA0KDQpDYW50YWJyaWFfU3ludGhldGljX1BhdGhfMSA8LSBkYXRhcHJlcC5vdXQkWTBwbG90ICUqJSBzeW50aC5vdXQkc29sdXRpb24udw0KDQojIEJhc3F1ZS1wZXJpb2QgT3B0aW1pemVkDQpkYXRhcHJlcC5vdXQgPC0NCiAgZGF0YXByZXAoDQogIGZvbyA9IGJhc3F1ZQ0KICAscHJlZGljdG9ycz0gYygic2Nob29sLmlsbGl0IiwNCiAgICAgICAgICAgICAgICAgInNjaG9vbC5wcmltIiwNCiAgICAgICAgICAgICAgICAgInNjaG9vbC5tZWQiLA0KICAgICAgICAgICAgICAgICAic2Nob29sLmhpZ2giLA0KICAgICAgICAgICAgICAgICAic2Nob29sLnBvc3QuaGlnaCINCiAgICAgICAgICAgICAgICAgLCJpbnZlc3QiDQogICAgICAgICAgICAgICAgICkNCiAgICxwcmVkaWN0b3JzLm9wID0gYygibWVhbiIpDQogICAsZGVwZW5kZW50ICAgICA9IGMoImdkcGNhcCIpDQogICAsdW5pdC52YXJpYWJsZSA9IGMoInJlZ2lvbm5vIikNCiAgICx0aW1lLnZhcmlhYmxlID0gYygieWVhciIpDQogICAsc3BlY2lhbC5wcmVkaWN0b3JzID0gbGlzdCgNCiAgICBsaXN0KCJnZHBjYXAiLDE5NjA6MTk2OSxjKCJtZWFuIikpLCAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICBsaXN0KCJzZWMuYWdyaWN1bHR1cmUiLHNlcSgxOTYxLDE5NjksMiksYygibWVhbiIpKSwNCiAgICBsaXN0KCJzZWMuZW5lcmd5IixzZXEoMTk2MSwxOTY5LDIpLGMoIm1lYW4iKSksDQogICAgbGlzdCgic2VjLmluZHVzdHJ5IixzZXEoMTk2MSwxOTY5LDIpLGMoIm1lYW4iKSksDQogICAgbGlzdCgic2VjLmNvbnN0cnVjdGlvbiIsc2VxKDE5NjEsMTk2OSwyKSxjKCJtZWFuIikpLA0KICAgIGxpc3QoInNlYy5zZXJ2aWNlcy52ZW50YSIsc2VxKDE5NjEsMTk2OSwyKSxjKCJtZWFuIikpLA0KICAgIGxpc3QoInNlYy5zZXJ2aWNlcy5ub252ZW50YSIsc2VxKDE5NjEsMTk2OSwyKSxjKCJtZWFuIikpLA0KICAgIGxpc3QoInBvcGRlbnMiLDE5NjksYygibWVhbiIpKSkNCiAgICAsdHJlYXRtZW50LmlkZW50aWZpZXIgID0gNyAjQ2FudGFicmlhDQogICAgLGNvbnRyb2xzLmlkZW50aWZpZXIgICA9IGMoMjo2LCA4OjE2LCAxOCkgI1JlbW92aW5nIDEsIDE3DQogICAgLHRpbWUucHJlZGljdG9ycy5wcmlvciA9IGMoMTk2NDoxOTY5KSAjQmFzcXVlLXRpbWUgb3B0aW1pemF0aW9uDQogICAgLHRpbWUub3B0aW1pemUuc3NyICAgICA9IGMoMTk2MDoxOTY5KQ0KICAgICx1bml0Lm5hbWVzLnZhcmlhYmxlICAgPSBjKCJyZWdpb25uYW1lIikNCiAgICAsdGltZS5wbG90ICAgICAgICAgICAgPSBjKDE5NTU6MTk5NykgDQogICAgKQ0KDQojIDEuIGNvbWJpbmUgaGlnaGVzdCBhbmQgc2Vjb25kIGhpZ2hlc3QgDQojIHNjaG9vbGluZyBjYXRlZ29yeSBhbmQgZWxpbWluYXRlIGhpZ2hlc3QgY2F0ZWdvcnkNCmRhdGFwcmVwLm91dCRYMVsic2Nob29sLmhpZ2giLF0gPC0gDQogZGF0YXByZXAub3V0JFgxWyJzY2hvb2wuaGlnaCIsXSArIA0KIGRhdGFwcmVwLm91dCRYMVsic2Nob29sLnBvc3QuaGlnaCIsXQ0KZGF0YXByZXAub3V0JFgxICAgICAgICAgICAgICAgICA8LSANCiBhcy5tYXRyaXgoZGF0YXByZXAub3V0JFgxWw0KICAtd2hpY2gocm93bmFtZXMoZGF0YXByZXAub3V0JFgxKT09InNjaG9vbC5wb3N0LmhpZ2giKSxdKQ0KZGF0YXByZXAub3V0JFgwWyJzY2hvb2wuaGlnaCIsXSA8LSANCiBkYXRhcHJlcC5vdXQkWDBbInNjaG9vbC5oaWdoIixdICsgDQogZGF0YXByZXAub3V0JFgwWyJzY2hvb2wucG9zdC5oaWdoIixdDQpkYXRhcHJlcC5vdXQkWDAgICAgICAgICAgICAgICAgIDwtIA0KZGF0YXByZXAub3V0JFgwWw0KIC13aGljaChyb3duYW1lcyhkYXRhcHJlcC5vdXQkWDApPT0ic2Nob29sLnBvc3QuaGlnaCIpLF0NCg0KIyAyLiBtYWtlIHRvdGFsIGFuZCBjb21wdXRlIHNoYXJlcyBmb3IgdGhlIHNjaG9vbGluZyBjYXRnZW9yaWVzDQpsb3dlc3QgIDwtIHdoaWNoKHJvd25hbWVzKGRhdGFwcmVwLm91dCRYMCk9PSJzY2hvb2wuaWxsaXQiKQ0KaGlnaGVzdCA8LSB3aGljaChyb3duYW1lcyhkYXRhcHJlcC5vdXQkWDApPT0ic2Nob29sLmhpZ2giKQ0KDQpkYXRhcHJlcC5vdXQkWDFbbG93ZXN0OmhpZ2hlc3QsXSA8LSANCiAoMTAwICogZGF0YXByZXAub3V0JFgxW2xvd2VzdDpoaWdoZXN0LF0pIC8NCiBzdW0oZGF0YXByZXAub3V0JFgxW2xvd2VzdDpoaWdoZXN0LF0pDQpkYXRhcHJlcC5vdXQkWDBbbG93ZXN0OmhpZ2hlc3QsXSA8LSAgDQogMTAwICogc2NhbGUoZGF0YXByZXAub3V0JFgwW2xvd2VzdDpoaWdoZXN0LF0sDQogICAgICAgICAgICAgY2VudGVyPUZBTFNFLA0KICAgICAgICAgICAgIHNjYWxlPWNvbFN1bXMoZGF0YXByZXAub3V0JFgwW2xvd2VzdDpoaWdoZXN0LF0pDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKQ0KIyBydW4gc3ludGgNCnN5bnRoLm91dCA8LSBzeW50aChkYXRhLnByZXAub2JqID0gZGF0YXByZXAub3V0KQ0KDQojIEdldCByZXN1bHQgdGFibGVzDQpzeW50aC50YWJsZXMgPC0gc3ludGgudGFiKA0KICAgICAgICAgICAgICAgICAgICAgICAgICBkYXRhcHJlcC5yZXMgPSBkYXRhcHJlcC5vdXQsDQogICAgICAgICAgICAgICAgICAgICAgICAgIHN5bnRoLnJlcyA9IHN5bnRoLm91dA0KICAgICAgICAgICAgICAgICAgICAgICAgICApIA0KDQpDYW50YWJyaWFfU3ludGhldGljX1BhdGhfMiA8LSBkYXRhcHJlcC5vdXQkWTBwbG90ICUqJSBzeW50aC5vdXQkc29sdXRpb24udw0KDQpDYW50YWJyaWFfUmVhbF9QYXRoIDwtIGJhc3F1ZVtiYXNxdWUkcmVnaW9ubmFtZT09J0NhbnRhYnJpYScsXSRnZHBjYXANCg0KIyBQbG90dGluZw0Kc3ludGhldGljX2RmIDwtIGRhdGEuZnJhbWUoWCA9IHJlcChjKDE5NTU6MTk5NyksMyksWT1jKHJiaW5kKENhbnRhYnJpYV9TeW50aGV0aWNfUGF0aF8xLENhbnRhYnJpYV9TeW50aGV0aWNfUGF0aF8yKSxDYW50YWJyaWFfUmVhbF9QYXRoKSwgbWV0aG9kPWMocmVwKCJGdWxsLXBlcmlvZCBPcHRpbWl6ZWQiLCA0MykscmVwKCdCYXNxdWUtcGVyaW9kIE9wdGltaXplZCcsNDMpLHJlcCgnQ2FudGFicmlhIFJlZ2lvbicsIDQzKSkpDQpsaWJyYXJ5KGdncGxvdDIpDQpnZ3Bsb3QoZGF0YT1zeW50aGV0aWNfZGYsIGFlcyh4PVgsIHk9WSwgZ3JvdXA9bWV0aG9kKSkgKw0KICBnZW9tX2xpbmUoYWVzKGNvbG9yPW1ldGhvZCkpKw0KICB0aGVtZShhc3BlY3QucmF0aW89MS8zKSsNCiAgeGxhYignWWVhcicpKw0KICB5bGFiKCdSZWFsIHBlci1jYXBpdGEgR0RQICgxOTg2IFVTRCwgdGhvdXNhbmQpJykNCnN5bnRoZXRpY19kZg0KDQojR2FwIHBsb3QNCmdhcF9kZiA8LSBkYXRhLmZyYW1lKFggPSByZXAoYygxOTU1OjE5OTcpLDIpLA0KICAgICAgICAgICAgICAgICAgICAgWSA9IHJiaW5kKENhbnRhYnJpYV9TeW50aGV0aWNfUGF0aF8xIC0gQ2FudGFicmlhX1JlYWxfUGF0aCwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgQ2FudGFicmlhX1N5bnRoZXRpY19QYXRoXzIgLSBDYW50YWJyaWFfUmVhbF9QYXRoKSwNCiAgICAgICAgICAgICAgICAgICAgIG1ldGhvZD1jKHJlcCgiRnVsbC1wZXJpb2QgT3B0aW1pemVkIiwgNDMpLHJlcCgnQmFzcXVlLXBlcmlvZCBPcHRpbWl6ZWQnLDQzKSkpDQoNCmdncGxvdChkYXRhPWdhcF9kZiwgYWVzKHg9WCwgeT13LndlaWdodCwgZ3JvdXA9bWV0aG9kKSkgKw0KICBnZW9tX2xpbmUoYWVzKGNvbG9yPW1ldGhvZCkpKw0KICB0aGVtZShhc3BlY3QucmF0aW89MS8zKSsNCiAgeGxhYignWWVhcicpKw0KICB5bGFiKCdHYXBzIGluIFJlYWwgcGVyLWNhcGl0YSBHRFAgKDE5ODYgVVNELCB0aG91c2FuZCknKSsNCiAgZ2VvbV9obGluZSh5aW50ZXJjZXB0PTApKw0KICB5bGltKC0xLjUsMS41KQ0KYGBgDQo=